Package | Description |
---|---|
com.googlecode.wicket.jquery.ui.form.slider |
Modifier and Type | Class and Description |
---|---|
class |
AjaxRangeSlider
Provides a jQuery range slider based on a
FormComponentPanel This ajax version will post the Component , using a JQueryAjaxPostBehavior , when the 'change' javascript method is called. |
class |
AjaxSlider
Provides a jQuery slider based on a
FormComponentPanel This ajax version will post the Component , using a OnChangeAjaxBehavior , when the 'change' javascript method is called. |
class |
RangeSlider
Provides a jQuery range slider based on a
FormComponentPanel |
class |
Slider
Provides a jQuery slider based on a
FormComponentPanel |
Modifier and Type | Method and Description |
---|---|
AbstractSlider<T> |
AbstractSlider.setLabelId(String markupId)
Sets the label's markupId on which the current slide value will be displayed.
Warning: It cannot be set/changed once the Component has been initialized. |
AbstractSlider<T> |
AbstractSlider.setMax(Integer max)
Sets the max value
|
AbstractSlider<T> |
AbstractSlider.setMin(Integer min)
Sets the min value
|
AbstractSlider<T> |
AbstractSlider.setOrientation(Orientation orientation)
Sets the
Orientation |
abstract AbstractSlider<T> |
AbstractSlider.setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator)
Adds a
RangeValidator so slider value(s) are valid only if comprised between minimum and maximum.Warning: it does not define the minimum and maximum values the slider can slide on, but only valid ones. To define the minimum and maximum values the slider can slide on, use setMin(Integer) and setMax(Integer) Dev note: this method is marked as abstract to make sure the developer that will add the validator to the right input(s) in onInitialize() |
AbstractSlider<RangeValue> |
RangeSlider.setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator) |
AbstractSlider<T> |
AbstractSlider.setStep(Integer step)
Sets the step value
|
Copyright © 2018 7thWeb. All rights reserved.