Uses of Class
com.googlecode.wicket.jquery.ui.form.slider.AbstractSlider

Packages that use AbstractSlider
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
 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 JQueryAjaxChangeBehavior, 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
 

Methods in com.googlecode.wicket.jquery.ui.form.slider with type parameters of type AbstractSlider
<W extends AbstractSlider<T>>
W
AbstractSlider.setMax(Integer max)
          Sets the max value
<W extends AbstractSlider<T>>
W
AbstractSlider.setMin(Integer min)
          Sets the min value
<W extends AbstractSlider<T>>
W
AbstractSlider.setOrientation(Orientation orientation)
          Sets the Orientation
<W extends AbstractSlider<RangeValue>>
W
RangeSlider.setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator)
           
<W extends AbstractSlider<Integer>>
W
Slider.setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator)
           
abstract
<W extends AbstractSlider<T>>
W
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 masked abstract to make sure the developer that will add the validator to the right input(s) in onInitialize()
<W extends AbstractSlider<T>>
W
AbstractSlider.setStep(Integer step)
          Sets the step value
 

Methods in com.googlecode.wicket.jquery.ui.form.slider that return AbstractSlider
 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.
 



Copyright © 2013 7thWeb. All Rights Reserved.