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 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 |
Modifier and Type | Method and Description |
---|---|
<W extends AbstractSlider<T>> |
AbstractSlider.setMax(Integer max)
Sets the max value
|
<W extends AbstractSlider<T>> |
AbstractSlider.setMin(Integer min)
Sets the min value
|
<W extends AbstractSlider<T>> |
AbstractSlider.setOrientation(Orientation orientation)
Sets the
Orientation |
<W extends AbstractSlider<RangeValue>> |
RangeSlider.setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator) |
<W extends AbstractSlider<Integer>> |
Slider.setRangeValidator(org.apache.wicket.validation.validator.RangeValidator<Integer> validator) |
abstract <W extends 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 masked abstract to make sure the developer that will add the validator to the right input(s) in onInitialize() |
<W extends AbstractSlider<T>> |
AbstractSlider.setStep(Integer step)
Sets the step value
|
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. |
Copyright © 2014 7thWeb. All Rights Reserved.