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

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

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 :)

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.