From the category archives:

NumericStepper

Creating a non-editable NumericStepper control in Flex

by Peter deHaan May 17, 2008

The following example shows how you can create a non-editable Flex NumericStepper control (users cannot type numbers directly into the control, but can still use the up arrow, down arrow, and keyboard to change the value) by setting the editable property on the nested inputField TextInput control.
Full code after the jump.

Read the full article →

Setting the step size on a NumericStepper control in Flex

by Peter deHaan May 16, 2008

The following code shows how you can adjust the step size on a Flex NumericStepper control by setting the stepSize property.
Full code after the jump.

Read the full article →

Setting the corner radius on a NumericStepper control in Flex

by Peter deHaan May 13, 2008

The following example shows how you can set the corner radius on a Flex NumericStepper control by setting the cornerRadius style.
Full code after the jump.

Read the full article →

Using a NumericStepper control as an item editor for a DataGrid control in Flex

by Peter deHaan May 12, 2008

The following example shows how you can use a NumericStepper as an item editor for a Flex DataGrid control by setting the itemEditor and editorDataField properties on the DataGridColumn object.
Full code after the jump.

Read the full article →