Hi,
I have a checkbox column and a bunch of other textcolumns. I want the user to be able to check/uncheck the checkbox column but not edit the textcolumns. That is, one column is editable while others are not. What can I do to achieve this? It would be great if it would respond to a single click and not one click for focus and another click for check/uncheck
hi,
You can use the IsReadOnly property. Setting IsReadOnly to true will disable the editing.
You can also set XamGrid.EditingSettings.IsOnCellActiveEditingEnabled to enter edit mode when the cell is activated.
Regrds