In WebDataGrid control am having UnboundCheckBoxField. and rowupdating event get executed on check/unchecked, how to avoid this. I am having Delete button at the bottom, and need to select multiple checkboxes and then press delete
pls guide, its very urgent...
Thanks
Hi Hemant Arte,
It has been some time since your post but in case you still need assistance I will be glad to help.
This could be caused by activation behavior. If you have activation enabled, you could handle the ActiveCellChanged client-side event and check if the new active cell is in checkbox column. If it is, cancel the event:
function WebDataGrid1_Activation_ActiveCellChanging(sender, eventArgs)
{
var columnKey = eventArgs.getNewActiveCell().get_column().get_key();
if (columnKey == "Check") {
eventArgs.set_cancel(true);
}
Please let me know if this is the case and if the suggested solution helps.
Hello Hemant Arte,
If you need any further assistance with the matter please feel free to contact me.