Uses of Interface
org.apache.wicket.markup.html.form.IChoiceRenderer

Packages that use IChoiceRenderer
org.apache.wicket.extensions.ajax.markup.html   
org.apache.wicket.extensions.markup.html.form.palette   
org.apache.wicket.extensions.markup.html.repeater.data.table.filter   
org.apache.wicket.markup.html.form HTML Forms and form components. 
 

Uses of IChoiceRenderer in org.apache.wicket.extensions.ajax.markup.html
 

Constructors in org.apache.wicket.extensions.ajax.markup.html with parameters of type IChoiceRenderer
AjaxEditableChoiceLabel(String id, IModel<T> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<T> renderer)
          Construct.
AjaxEditableChoiceLabel(String id, IModel<T> model, List<? extends T> choices, IChoiceRenderer<T> renderer)
          Construct.
 

Uses of IChoiceRenderer in org.apache.wicket.extensions.markup.html.form.palette
 

Methods in org.apache.wicket.extensions.markup.html.form.palette that return IChoiceRenderer
 IChoiceRenderer<T> Palette.getChoiceRenderer()
           
 

Constructors in org.apache.wicket.extensions.markup.html.form.palette with parameters of type IChoiceRenderer
Palette(String id, IModel<? extends Collection<? extends T>> choicesModel, IChoiceRenderer<T> choiceRenderer, int rows, boolean allowOrder)
           
Palette(String id, IModel<List<T>> model, IModel<? extends Collection<? extends T>> choicesModel, IChoiceRenderer<T> choiceRenderer, int rows, boolean allowOrder)
           
 

Uses of IChoiceRenderer in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.table.filter that return IChoiceRenderer
protected  IChoiceRenderer<Y> ChoiceFilteredPropertyColumn.getChoiceRenderer()
          Returns choice renderer that will be used to create the choice filter
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.table.filter with parameters of type IChoiceRenderer
protected  DropDownChoice<T> ChoiceFilter.newDropDownChoice(String id, IModel<T> model, IModel<List<? extends T>> choices, IChoiceRenderer<T> renderer)
          Factory method for the drop down choice component
 

Constructors in org.apache.wicket.extensions.markup.html.repeater.data.table.filter with parameters of type IChoiceRenderer
ChoiceFilter(String id, IModel<T> model, FilterForm<?> form, IModel<List<? extends T>> choices, IChoiceRenderer<T> renderer, boolean autoSubmit)
           
ChoiceFilter(String id, IModel<T> model, FilterForm<?> form, List<? extends T> choices, IChoiceRenderer<T> renderer, boolean autoSubmit)
           
 

Uses of IChoiceRenderer in org.apache.wicket.markup.html.form
 

Classes in org.apache.wicket.markup.html.form that implement IChoiceRenderer
 class ChoiceRenderer<T>
          Default implementation of IChoiceRenderer.
 class EnumChoiceRenderer<T extends Enum<T>>
          IChoiceRenderer implementation that makes it easy to work with java 5 enums.
 

Methods in org.apache.wicket.markup.html.form that return IChoiceRenderer
 IChoiceRenderer<? super E> AbstractChoice.getChoiceRenderer()
           
 

Methods in org.apache.wicket.markup.html.form with parameters of type IChoiceRenderer
 AbstractChoice<T,E> AbstractChoice.setChoiceRenderer(IChoiceRenderer<? super E> renderer)
          Set the choice renderer to be used.
 

Constructors in org.apache.wicket.markup.html.form with parameters of type IChoiceRenderer
AbstractChoice(String id, IModel<? extends List<? extends E>> choices, IChoiceRenderer<? super E> renderer)
          Constructor.
AbstractChoice(String id, IModel<T> model, IModel<? extends List<? extends E>> choices, IChoiceRenderer<? super E> renderer)
          Constructor.
AbstractChoice(String id, IModel<T> model, List<? extends E> choices, IChoiceRenderer<? super E> renderer)
          Constructor.
AbstractChoice(String id, List<? extends E> choices, IChoiceRenderer<? super E> renderer)
          Constructor.
AbstractSingleSelectChoice(String id, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
AbstractSingleSelectChoice(String id, IModel<T> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
AbstractSingleSelectChoice(String id, IModel<T> model, List<? extends T> data, IChoiceRenderer<? super T> renderer)
           
AbstractSingleSelectChoice(String id, List<? extends T> data, IChoiceRenderer<? super T> renderer)
           
CheckBoxMultipleChoice(String id, IModel<? extends Collection<T>> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
          Constructor
CheckBoxMultipleChoice(String id, IModel<? extends Collection<T>> model, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
          Constructor
CheckBoxMultipleChoice(String id, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
          Constructor
CheckBoxMultipleChoice(String id, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
          Constructor
DropDownChoice(String id, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
DropDownChoice(String id, IModel<T> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
DropDownChoice(String id, IModel<T> model, List<? extends T> data, IChoiceRenderer<? super T> renderer)
           
DropDownChoice(String id, List<? extends T> data, IChoiceRenderer<? super T> renderer)
           
ListChoice(String id, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
ListChoice(String id, IModel<T> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
ListChoice(String id, IModel<T> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer, int maxRows)
           
ListChoice(String id, IModel<T> model, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
           
ListChoice(String id, IModel<T> model, List<? extends T> choices, IChoiceRenderer<? super T> renderer, int maxRows)
           
ListChoice(String id, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
           
ListMultipleChoice(String id, IModel<? extends Collection<T>> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
ListMultipleChoice(String id, IModel<? extends Collection<T>> object, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
           
ListMultipleChoice(String id, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
           
ListMultipleChoice(String id, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
           
RadioChoice(String id, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
          Constructor
RadioChoice(String id, IModel<T> model, IModel<? extends List<? extends T>> choices, IChoiceRenderer<? super T> renderer)
          Constructor
RadioChoice(String id, IModel<T> model, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
          Constructor
RadioChoice(String id, List<? extends T> choices, IChoiceRenderer<? super T> renderer)
          Constructor
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.