Hello,
I have set a grid to go into edit mode when a row is double clicked:
I want to hide the GridEditCommandColumn until a row is double clicked and put into edit mode. At this point the Save and Cancel items will be shown.
Basically I don't want to see the Edit Icon column, double click is the only way to get into edit mode.
Could you please provide some guidance on how to achieve this?
Thanks.
I have set a grid to go into edit mode when a row is double clicked:
<ClientEvents OnRowDblClick=
"RowDblClick"
/>
function
RowDblClick(sender, eventArgs) {
$find(
"<%= RadGrid1.MasterTableView.ClientID %>"
).editItem(eventArgs.get_itemIndexHierarchical());
}
I want to hide the GridEditCommandColumn until a row is double clicked and put into edit mode. At this point the Save and Cancel items will be shown.
Basically I don't want to see the Edit Icon column, double click is the only way to get into edit mode.
Could you please provide some guidance on how to achieve this?
Thanks.