R – Flex: Using NumericStepper as an itemEditor in a DataGrid

apache-flexdatagriditemeditor

I am trying to make one field in a datagrid editable with a numeric stepper. My current attempts look like they are working, but the dataProvider is not actually being changed.

Based on what I have read in a billion different places, the syntax should be

< mx:DataGridColumn dataField="a" itemRenderer="mx.controls.NumericStepper" rendererIsEditor="true" editorDataField="value" / > 

I have tried several variations on this theme, and nothing seems to work. What am I missing?

Best Answer

Without any more info, I would guess that your dataProvider is not declared as Bindable.

Related Topic