Example usage for org.apache.wicket.extensions.markup.html.repeater.data.table.filter ChoiceFilter getChoice

List of usage examples for org.apache.wicket.extensions.markup.html.repeater.data.table.filter ChoiceFilter getChoice

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.repeater.data.table.filter ChoiceFilter getChoice.

Prototype

public final DropDownChoice<T> getChoice() 

Source Link

Usage

From source file:net.databinder.components.ObjectFilteredPropertyColumn.java

License:Open Source License

public Component getFilter(String componentId, FilterForm form) {
    ChoiceFilter cf = (ChoiceFilter) super.getFilter(componentId, form);
    cf.getChoice().setNullValid(true);
    return cf;//ww  w  .  j av  a 2s .co m
}