R – Why check boxes do not stayed checked as you scroll using flex

actionscript-3airapache-flexflashmxml

I've had problems using check boxes in data grids that are populated using dynamic data. The check boxes do not stayed checked as you scroll. How can i solve it ?

Best Answer

You have to persist the state of the checkbox using your item renderer and preferably your data model. You can find an example of how you could achieve this blog post.

Related Topic