I have a datatable bound to a UltraCombo grid - the datatable has a boolean column which is shown as a checkbox in the grid. The user should be able to check/uncheck the boolean value without being able to edit the other columns. How is this done in the control?
The checkbox is shown in the grid but nothing happens when the user click on it.
Please help.
Thanks in advance.
/K
Hi,
What exactly do you want to happen when you check/uncheck items?
You can do something like this:
this.ultraCombo1.CheckedListSettings.CheckStateMember = "Boolean 1";
This will set up your combo so that the field you specify determines what is selected in the Combo.
Setting the CheckStateMember does not give me a check column??
How do I enable this functionallity?
The combo use a grid which contains a dataset - the dataset contains a boolean column which must be set (true/false) when the user click on the checkbox column.