We need to display an icon. The visibility depends on the data in another collection which is not the xamdatagrid datasource. But using some cell value of each data row, we could find the data in that collection then decide if the icon should show or hide.
Can we use an event right after xamdatagrid finishing data binding and set the cell's visibility? What's the event?
Thanks for help.
TTran117,
I couldn't quite catch what exactly the Visibility of the Icon is dependent upon. Could you provide a more detailed example of the structure of your data and how the resolution of the icon's visibility should work and what it is dependent upon. A sample solution would be best.
I don't believe that there is such an event that will be fired after the grid has been bound.
Regards,
Thank you for your reply. You are right, I should not use unboundField, just use bound field. Right now there is another question, how to hide or show a cell according to data value. I saw this post: http://ko.infragistics.com/community/forums/p/67821/343970.aspx#343970
But in the sample project if the one cell value of "Open" is equal to 1, all of this column is hidden. What we want is to only hide this cell, and show other cells whose value is not 1.