I want to put these images in the RowSelector column depending upon these states:
inactive/not selected - nothing
inactive/selected - check mark
active/not selected - triangle
active/selected - check mark and triangle
How can this be done (preferably through the properties, in code if not).
Hi,
Setting the Image in InitializeRow seems like a good idea. But I'm not entirely sure that IniitalizeRow will fire for all the states you have here. For example, I don't think InitializeRow fires when a row goes from being Active to Inactive. Or Selected to Unselected.
So you will probably need to handle this in the Before/AfterRowActivate, Before/AfterRowDeactivate, and SelectionChange events.
haggard said:How can this be done (preferably through the properties, in code if not).
There is no way to do this via properties.