I have a DataGrid where some number of the columns can have a labelFunction. The nature of the labelFunction result can change problematically(eg apply formatting, bypass formatting).

How do I get the DataGrid to re-render the visible items so that the labelFunction will be run again to get the new data.

I've tried the invalidateDisplayList, validateNow, and tried dispatching ResizeEvents on the DataGrid. No success.

link|improve this question

2  
Have you tried yourDataProvider.refresh() ? – Florian F Mar 30 '11 at 19:43
feedback

1 Answer

up vote 1 down vote accepted

I think Florian's comment is worth trying first but otherwise I believe invalideList will work: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/controls/listClasses/ListBase.html#invalidateList()

link|improve this answer
Thanks, that did the trick. I didn't want to refresh the data provider, since that will resort and re-filter the data, and that's overkill. – Doug Mar 31 '11 at 12:00
feedback

Your Answer

 
or
required, but never shown

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