Slider Component
Description
This component allows you create a slider in a form. A range slider is a slider that is mapped to a property value. This components actually creates a Tapestry textfield component and enhanced its behaviour by adding a slider. This field is are hidden by default.
Links
Name | Required | Java Type | Default Prefix | Default Value | Description |
---|---|---|---|---|---|
value | true | Object | prop | The value to be read and updated. This value is passed to the textfield. | |
params | false | JSONObject | prop | The slider parameters (please refer to jquery-ui documentation) | |
zone | false | String | literal | The zone to update when changes occure on the slider. An 'action' event is triggered on the server. You can catch it on your page with @OnEvent(value=EventConstants.ACTION, component='sliderZone'). | |
displayTextField | false | Boolean | prop | false | A boolean indicating whether to display the textfield on the client (default is false). |