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
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);