I am assigning an UltraCheckEditor to a cell in a WinGrid (via Build_InitializeRow event). The problem is that regardless of how I set the Checked value it displays as a filled in square.
i.e
What am I missing? It works fine when I dynamically create the UltraCheckEditor and add it to a different form, just something about the WinGrid I am assuming.
ponyryd said:it displays as a filled in square.
That's the indeterminate state of the CheckBox. This means that the Value of the cell cannot be interpreted by the check editor as true or false. So you need to look at what the Value of your cell is and make sure it's a boolean or maybe a CheckState.