What does this control do?
This control is an input element and a pair of buttons to increment or decrease its value.
For an usage example check out the Meteora.Spinbutton demo.
How to use
In order to use this control, paste this line of javascript right
at the beginning of your script tag:
Meteora.uses('Meteora.Spinbutton');
You'll need to associate an input with this control.
<input id="spinbutton_input">
You may then by able to invoke the Datagrid this way:
new Spinbutton(
// ELEMENT
'spinbutton_input',
{
// OPTIONS
'defaultValue': 0.0,
'maxValue': 1,
'minValue': 0,
'step': 0.1
}
);