I've got a grid with column of checkboxes not bound to anything. When a range of checkboxes needs to be clicked, instead of having to click them one by one, I'd like to provide Windows like behavior with a Shift-Click like ability. Like use of Up,Down,Ctrl,Home,End would be nice too but just Shift-Click would be better than nothing. I haven't found some inherent setting to make any of this happen.
I haven't even been able to check whether or not Shift or ShiftKey is pressed from CellChange yet whereas it'd be easy from KeyDown or KeyUp which aren't used here.
I have the column name from the dataset. I check it for many time for typo, and even cut and paste the column name, so I assume it's not a typo. Don't know why?
Thanks
Look at the "Key" property of your column that contains the checkbox. So, in other words, if your column's key property is "send email", then your code should look like this:
row.cells("send email").value = true
Hi,
I have a problem with this. I try to get the value of the checkbox in the UltraGrid and I have an error message say Key Not Found. Please help
Great! Thank you.
Yes.
row.Cells["MyCheckBoxCell"].Vaule = true;