Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
384
UltraCheckEditor in WinGrid - incorrect display
posted

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 Filled in CheckboxCheckbox

 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.

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    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.  

Children