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);
Hello Mike,
I can not define a DataType of a column that must represent any kind of object.
Consider the value column's DataType of type object.
I works with ANY type except bool and CheckBox.