tags:

views:

280

answers:

2

How would I find the maximum value in a specific column in a Flex DataGrid?

+1  A: 

I don't think there's a standard function/solution for this. A workaround could be to sort the column and get that result from which you can extract the highest value. Again, there doesn't seem to be a standard function for this.

More information about the sorting can be found here. Don't know if this was the answer you were hoping for, but I hope it helps :)

MysticEarth
+2  A: 

The dataprovider of the datagrid can be arraycollection. If you do the sorting of the arraycollection, then you will get maximum value in the first row.

michael