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
1940
CheckBox in UltraTreeNodeCell
posted

Hello,

I struggle to get a UltraCheckBoxEditor EditorComponent on a UltraTreeNodeCell to accept new values.

Example (13.1.20131.2027) is attached.

Why can I not change the value by clicking in the check box?

Blue

CheckBoxCell.zip
Parents
No Data
Reply
  • 469350
    Offline posted

    Hi Blue,

    The problem is that you have a Checkbox in a column whose DataType is string. So the CheckBox doesn't know what to do with a string. This is very easy to fix:

    valueColumn.DataType = typeof(bool);

Children