Package | Description |
---|---|
com.googlecode.wicket.jquery.ui.form.spinner |
Modifier and Type | Class and Description |
---|---|
class |
AjaxSpinner<T extends Number>
Provides an ajax jQuery spinner based on a
TextField The type ctor arg is mandatory due to the AjaxSpinner.convertValue(String) method |
Modifier and Type | Method and Description |
---|---|
Spinner<T> |
Spinner.setCulture(String culture)
Sets the culture to use for parsing and formatting the value.
More: https://github.com/jquery/globalize |
Spinner<T> |
Spinner.setMax(Number max)
Sets the max.
|
Spinner<T> |
Spinner.setMax(String max)
Sets the max.
If Globalize is included, the max option canbe passed as a string which will be parsed based on the numberFormat and culture options; otherwise it will fall back to the native parseFloat() method. More: https://github.com/jquery/globalize |
Spinner<T> |
Spinner.setMin(Number min)
Sets the min.
|
Spinner<T> |
Spinner.setMin(String min)
Sets the min.
If Globalize is included, the min option can be passed as a string which will be parsed based on the numberFormat and culture options; otherwise it will fall back to the native parseFloat() method. More: https://github.com/jquery/globalize |
Spinner<T> |
Spinner.setPage(Number steps)
Sets the number of steps to take when paging via the pageUp/pageDown methods.
|
Spinner<T> |
Spinner.setStep(Number size)
Sets the size of the step to take when spinning via buttons or via the stepUp()/stepDown() methods.
|
Copyright © 2016 7thWeb. All rights reserved.