Uses of Class
com.googlecode.wicket.jquery.ui.form.slider.AbstractSlider
-
Packages that use AbstractSlider Package Description com.googlecode.wicket.jquery.ui.form.slider -
-
Uses of AbstractSlider in com.googlecode.wicket.jquery.ui.form.slider
Subclasses of AbstractSlider in com.googlecode.wicket.jquery.ui.form.slider Modifier and Type Class Description classAjaxRangeSliderProvides a jQuery range slider based on aFormComponentPanelThis ajax version will post theComponent, using aJQueryAjaxPostBehavior, when the 'change' javascript method is called.classAjaxSliderProvides a jQuery slider based on aFormComponentPanel
This ajax version will post theComponent, using aOnChangeAjaxBehavior, when the 'change' javascript method is called.classRangeSliderProvides a jQuery range slider based on aFormComponentPanelclassSliderProvides a jQuery slider based on aFormComponentPanelMethods in com.googlecode.wicket.jquery.ui.form.slider that return AbstractSlider Modifier and Type Method 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 valueAbstractSlider<T>AbstractSlider. setMin(Integer min)Sets the min valueAbstractSlider<T>AbstractSlider. setOrientation(Orientation orientation)Sets theOrientationabstract AbstractSlider<T>AbstractSlider. setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator)Adds aRangeValidatorso 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, usesetMin(Integer)andsetMax(Integer)
Dev note: this method is marked as abstract to make sure the developer that will add the validator to the right input(s) inonInitialize()AbstractSlider<RangeValue>RangeSlider. setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator)AbstractSlider<T>AbstractSlider. setStep(Integer step)Sets the step value
-