Tag Archive for 'editable'

17
May

Creating a non-editable NumericStepper control in Flex

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.

Continue reading ‘Creating a non-editable NumericStepper control in Flex’

12
May

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

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.

Continue reading ‘Using a NumericStepper control as an item editor for a DataGrid control in Flex’

11
May

Creating an editable DataGrid control in Flex

The following example shows how you can create an editable Flex DataGrid control by setting the editable property on the DataGrid and DataGridColumn objects.

Full code after the jump.

Continue reading ‘Creating an editable DataGrid control in Flex’

21
Dec

Customizing the Flex ComboBox control’s text input styles

The following example shows how you can customize the ComboBox control’s text input styles by setting the textInputStyleName style in Flex.

Full code after the jump.

Continue reading ‘Customizing the Flex ComboBox control’s text input styles’