Example usage for org.apache.wicket.markup.html.form FormComponent updateCollectionModel

List of usage examples for org.apache.wicket.markup.html.form FormComponent updateCollectionModel

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form FormComponent updateCollectionModel.

Prototype

public static <S> void updateCollectionModel(FormComponent<Collection<S>> formComponent) 

Source Link

Document

Update the model of a FormComponent containing a Collection .

Usage

From source file:com.googlecode.wicket.kendo.ui.form.multiselect.lazy.MultiSelect.java

License:Apache License

@Override
public void updateModel() {
    FormComponent.updateCollectionModel(this);
}