views:

27

answers:

1

I have an AdvancedDataGrid. One of the columns in the grid displayed with help of custom render. During the application run, I set another custom render to the same column. When I scroll data in the grid (change values for the custom renders) they display new view correctly.

I want that they dispaly new view automatically (when I set them): so I think I have to call them and tell tham to refresh rgeir views. Any idea how to do this?

A: 

Use invalidateList()

www.Flextras.com
Just tried. Doesn't work somehow.
MinimeDJ
I found the problem. I used to set ItemRender via rendererProviders, but when I set it directly on the column - everything works fine! Thank you!
MinimeDJ
I can theorize. If rendererProviders is an array, changing on element inside that array will not trigger data binding and will therefore not update the column in question. Without reviewing the source code can't say for sure, though.
www.Flextras.com