I have a DataGrid with 3 DataGridColumns. All 3 of them have separate dataFields.

I need to get the datafields into an ArrayCollection and pass it to a funciton. I dont want to hard code the ArrayCollection.

Is there any way to achieve this?

Thanks :)

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Something like this:

var dataFieldCollection : ArrayCollection = new ArrayCollection();
for each (dataGridColumn : DataGridColumn in dataGrid.columns){
 dateFieldCollection.addItem(dataGridColumn.dateField);
}

This is psuedo code I wrote in the browser.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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