I have an item renderer that checks an external source for display information. If that information changes, I want to force all item renderer instances to check it.
What's the best way for force all the item renderers in a list or grid to either commitProperties
or execute some other method?
I've read that resetting the
grid.itemRenderer
property will make them all initialize.I've also received the suggestion to iterate recursively through all the grid's children and call
invalidateProperties
on all the UIComponents I find.
Any thoughts? Alternatives?