Spinner Widgetversion added: 1.9
Description: Enhance a text input for entering numeric values, with up/down buttons and arrow key handling.
The Spinner, or number stepper widget, is perfect for handling all kinds of numeric input. It allows users to type a value directly, or modify an existing value by spinning with the keyboard, mouse or scrollwheel. When combined with Globalize, you can even spin currencies and dates in a variety of locales.
Spinner wraps a text input with two buttons to increment and decrement the current value. Key events are added so that the same incrementing and decrementing can be done with the keyboard. Spinner delegates to Globalize for number formatting and parsing.
Keyboard interaction
-
UP
: Increment the value by one step. -
DOWN
: Decrement the value by one step. -
PAGE UP
: Increment the value by one page. -
PAGE DOWN
: Decrement the value by one page.
Focus stays in the text field, even after using the mouse to click one of the spin buttons.
When the spinner is not read only (<input readonly>
), the user may enter text that causes an invalid value (below min, above max, step mismatch, non-numeric input). Whenever a step is taken, either programmatically or via the step buttons, the value will be forced to a valid value (see the description for stepUp()
and stepDown()
for more details).
Theming
The spinner widget uses the jQuery UI CSS framework to style its look and feel. If spinner specific styling is needed, the following CSS class names can be used for overrides or as keys for the classes
option:
-
ui-spinner
: The outer container of the spinner.-
ui-spinner-input
: The<input>
element that the Spinner widget was instantiated with. -
ui-spinner-button
: The button controls used to increment and decrement the spinner's value. The up button will additionally have aui-spinner-up
class and the down button will additionally have aui-spinner-down
class.
-
Dependencies
- UI Core
- Widget Factory
- Button
-
Globalize (external, optional; for use with the
culture
andnumberFormat
options)
Additional Notes:
- This widget requires some functional CSS, otherwise it won't work. If you build a custom theme, use the widget's specific CSS file as a starting point.
-
This widget manipulates its element's value programmatically, therefore a native
change
event may not be fired when the element's value changes. -
Creating a spinner on an
<input type="number">
is not supported due to a UI conflict with the native spinner.
Options
classes
|
Specify additional classes to add to the widget's elements. Any of classes specified in the Theming section can be used as keys to override their value. To learn more about this option, check out the learn article about the classes
option.
Initialize the spinner with the classes
option specified, changing the theming for the ui-spinner
class:
1
2
3
4
5
|
|
Get or set a property of the classes
option, after initialization, here reading and changing the theming for the ui-spinner
class:
1
2
3
4
5
|
|
culture
null
null
, the currently set culture in Globalize
is used, see Globalize docs for available cultures. Only relevant if the numberFormat
option is set. Requires Globalize to be included.Initialize the spinner with the culture
option specified:
1
2
3
|
|
Get or set the culture
option, after initialization:
1
2
3
4
5
|
|
disabled
false
true
.Initialize the spinner with the disabled
option specified:
1
2
3
|
|
Get or set the disabled
option, after initialization:
1
2
3
4
5
|
|
icons
{ down: "ui-icon-triangle-1-s", up: "ui-icon-triangle-1-n" }
- up (string, default: "ui-icon-triangle-1-n")
- down (string, default: "ui-icon-triangle-1-s")
Initialize the spinner with the icons
option specified:
1
2
3
|
|
Get or set the icons
option, after initialization:
1
2
3
4
5
|
|
incremental
true
-
Boolean: When set to
true
, the stepping delta will increase when spun incessantly. When set tofalse
, all steps are equal (as defined by thestep
option). - Function: Receives one parameter: the number of spins that have occurred. Must return the number of steps that should occur for the current spin.
Initialize the spinner with the incremental
option specified:
1
2
3
|
|
Get or set the incremental
option, after initialization:
1
2
3
4
5
|
|
max
null
max
attribute is used if it exists and the option is not explicitly set. If null
, there is no maximum enforced.- Number: The maximum value.
-
String: If Globalize is included, the
max
option can be passed as a string which will be parsed based on thenumberFormat
andculture
options; otherwise it will fall back to the nativeparseFloat()
method.
Initialize the spinner with the max
option specified:
1
2
3
|
|
Get or set the max
option, after initialization:
1
2
3
4
5
|
|
min
null
min
attribute is used if it exists and the option is not explicitly set. If null
, there is no minimum enforced.- Number: The minimum value.
-
String: If Globalize is included, the
min
option can be passed as a string which will be parsed based on thenumberFormat
andculture
options; otherwise it will fall back to the nativeparseFloat()
method.
Initialize the spinner with the min
option specified:
1
2
3
|
|
Get or set the min
option, after initialization:
1
2
3
4
5
|
|
numberFormat
null
Globalize
, if available. Most common are "n"
for a decimal number and "C"
for a currency value. Also see the culture
option.Initialize the spinner with the numberFormat
option specified:
1
2
3
|
|
Get or set the numberFormat
option, after initialization:
1
2
3
4
5
|
|
page
10
Initialize the spinner with the page
option specified:
1
2
3
|
|
Get or set the page
option, after initialization:
1
2
3
4
5
|
|
step
1
stepUp()
/stepDown()
methods. The element's step
attribute is used if it exists and the option is not explicitly set.- Number: The size of the step.
-
String: If Globalize is included, the
step
option can be passed as a string which will be parsed based on thenumberFormat
andculture
options, otherwise it will fall back to the nativeparseFloat
.
Initialize the spinner with the step
option specified:
1
2
3
|
|
Get or set the step
option, after initialization:
1
2
3
4
5
|
|
Methods
destroy()Returns: jQuery (plugin only)
- This method does not accept any arguments.
Invoke the destroy method:
1
|
|
disable()Returns: jQuery (plugin only)
- This method does not accept any arguments.
Invoke the disable method:
1
|
|
enable()Returns: jQuery (plugin only)
- This method does not accept any arguments.
Invoke the enable method:
1
|
|
instance()Returns: Object
Retrieves the spinner's instance object. If the element does not have an associated instance, undefined
is returned.
Unlike other widget methods, instance()
is safe to call on any element after the spinner plugin has loaded.
- This method does not accept any arguments.
Invoke the instance method:
1
|
|
option( optionName )Returns: Object
Gets the value currently associated with the specified optionName
.
Note: For options that have objects as their value, you can get the value of a specific key by using dot notation. For example, "foo.bar"
would get the value of the bar
property on the foo
option.
-
optionNameType: StringThe name of the option to get.
Invoke the method:
1
|
|
option()Returns: PlainObject
- This signature does not accept any arguments.
Invoke the method:
1
|
|
option( optionName, value )Returns: jQuery (plugin only)
Sets the value of the spinner option associated with the specified optionName
.
Note: For options that have objects as their value, you can set the value of just one property by using dot notation for optionName
. For example, "foo.bar"
would update only the bar
property of the foo
option.
-
optionNameType: StringThe name of the option to set.
-
valueType: ObjectA value to set for the option.
Invoke the method:
1
|
|
option( options )Returns: jQuery (plugin only)
-
optionsType: ObjectA map of option-value pairs to set.
Invoke the method:
1
|
|
pageDown( [pages ] )Returns: jQuery (plugin only)
Decrements the value by the specified number of pages, as defined by the page
option. Without the parameter, a single page is decremented.
If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.
Invoking pageDown()
will cause start
, spin
, and stop
events to be triggered.
-
pagesType: NumberNumber of pages to decrement, defaults to 1.
Invoke the pageDown method:
1
|
|
pageUp( [pages ] )Returns: jQuery (plugin only)
Increments the value by the specified number of pages, as defined by the page
option. Without the parameter, a single page is incremented.
If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.
Invoking pageUp()
will cause start
, spin
, and stop
events to be triggered.
-
pagesType: NumberNumber of pages to increment, defaults to 1.
Invoke the pageUp method:
1
|
|
stepDown( [steps ] )Returns: jQuery (plugin only)
Decrements the value by the specified number of steps. Without the parameter, a single step is decremented.
If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.
Invoking stepDown()
will cause start
, spin
, and stop
events to be triggered.
-
stepsType: NumberNumber of steps to decrement, defaults to 1.
Invoke the stepDown method:
1
|
|
stepUp( [steps ] )Returns: jQuery (plugin only)
Increments the value by the specified number of steps. Without the parameter, a single step is incremented.
If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.
Invoking stepUp()
will cause start
, spin
, and stop
events to be triggered.
-
stepsType: NumberNumber of steps to increment, defaults to 1.
Invoke the stepUp method:
1
|
|
value()Returns: Number
numberFormat
and culture
options.- This signature does not accept any arguments.
Invoke the method:
1
|
|
value( value )Returns: jQuery (plugin only)
-
valueThe value to set. If passed as a string, the value is parsed based on the
numberFormat
andculture
options.
Invoke the method:
1
|
|
widget()Returns: jQuery
jQuery
object containing the generated wrapper.
- This method does not accept any arguments.
Invoke the widget method:
1
|
|
Extension Points
The spinner widget is built with the widget factory and can be extended. When extending widgets, you have the ability to override or add to the behavior of existing methods. The following methods are provided as extension points with the same API stability as the plugin methods listed above. For more information on widget extensions, see Extending Widgets with the Widget Factory.
_uiSpinnerHtml()Returns: String
<input>
element.
- This method does not accept any arguments.
Wrap the spinner with a <div>
with no rounded corners.
1
2
3
|
|
Events
change( event, ui )Type: spinchange
Note: The ui
object is empty but included for consistency with other events.
Initialize the spinner with the change callback specified:
1
2
3
|
|
Bind an event listener to the spinchange event:
1
|
|
create( event, ui )Type: spincreate
Note: The ui
object is empty but included for consistency with other events.
Initialize the spinner with the create callback specified:
1
2
3
|
|
Bind an event listener to the spincreate event:
1
|
|
spin( event, ui )Type: spin
ui.value
).
Can be canceled, preventing the value from being updated.
-
eventType: Event
-
uiType: Object
-
valueType: NumberThe new value to be set, unless the event is cancelled.
-
Initialize the spinner with the spin callback specified:
1
2
3
|
|
Bind an event listener to the spin event:
1
|
|
start( event, ui )Type: spinstart
Note: The ui
object is empty but included for consistency with other events.
Initialize the spinner with the start callback specified:
1
2
3
|
|
Bind an event listener to the spinstart event:
1
|
|
stop( event, ui )Type: spinstop
Note: The ui
object is empty but included for consistency with other events.
Initialize the spinner with the stop callback specified:
1
2
3
|
|
Bind an event listener to the spinstop event:
1
|
|
Example:
Plain number spinner
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
|