In Flex 4 using a pre populated data grid, how can I get or set specific values programatically, IE I wont be using selectedItems etc.

How do I reference the value of a cell in row 4 colum 6 for example.

Please and thank you in advance for your help.

Craig

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Cast the dataProvider of the DataGrid to ListCollectionView and use its getItemAt method.

ListCollectionView(dataGrid.dataProvider).getItemAt(requiredRow).appropriateProperty = newValue;

Update: In case the column name is dynamic, you can fetch it using something like:

var data_field:String = dgViewPreview.columns[6].dataField; //for 6th column
ListCollectionView(dataGrid.dataProvider).getItemAt(requiredRow)[data_field] = newValue;
link|improve this answer
Firstly thankk you so much for taking the time to answer:Ok that gets me the row, how do I get the specific column – Craig Mc Oct 8 '10 at 11:02
I have 30 values in a single row I really only want to update only one specific item. – Craig Mc Oct 8 '10 at 11:02
The scenario is when a user edits an item in my datagrid, I need to update a series of other values in the datagrid which in turn are running totals of certain othr vlaues of the grid. – Craig Mc Oct 8 '10 at 11:06
would this work: ListCollectionView(dataGrid.dataProvider).getItemAt(requiredColumn,requiredRow).‌​appropriateProperty = newValue; And what is the appropriateProperty for the value of a cell. I have not being able to find any decent documentation on working with cells beyond selectedItem. Which does not apply to anything Im trying to do? – Craig Mc Oct 8 '10 at 11:10
@Craig it depends on what value you show in that particular column - that's why I used the term appropriateProperty - what's the dataField of the required DataGridColumn? – Amarghosh Oct 8 '10 at 11:13
show 14 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.