org.chenillekit.tapestry.core.components.MultipleSelect

Select a list of items from a list of values, using an [X]HTML multiple select element on the client side. the only diffrence to the original tapestry select component is that the "value" parameter expected a java.util.List object.

[JavaDoc]

Component Parameters

Name Type Flags Default Default Prefix Description
encoder org.chenillekit.tapestry.core.encoders.MultipleValueEncoder NOT Allow Null prop Allows a specific implementation of org.apache.tapestry5.ValueEncoder to be supplied. This is used to create client-side string values for the different options.
model org.apache.tapestry5.SelectModel Required, NOT Allow Null prop The model used to identify the option groups and options to be presented to the user. This can be generated automatically for Enum types.
multiple boolean NOT Allow Null true prop should the component multi select able.
validate org.apache.tapestry5.FieldValidator NOT Allow Null validate
value java.util.List Required, NOT Allow Null prop The list of value to read or update.

Back to index