In RadGrid RowDblClick, I want to put the row in edit mode only if the user clicks certain cell columns in my grid (only if they click one of the non-readonly columns, for example). How can I alter it to conditionally inspect which column was clicked?
Or would it be possible to use a cell dbl-click event instead of row's dbl-click event, if such an event for cells exists?
function
RowDblClick(sender, eventArgs) {
// inspect what column was clicked
// if (columnindex in (3,6,7) { -- user clicked one of our editable columns, so allow edit
sender.get_masterTableView().editItem(eventArgs.get_itemIndexHierarchical());
// }
}
Or would it be possible to use a cell dbl-click event instead of row's dbl-click event, if such an event for cells exists?