Hi,
Is there a way to cancel the edit command in gridCreateColumnEditorEvent? I have tried the following, but it is not working:
//HÃ¥kan
Is there a way to cancel the edit command in gridCreateColumnEditorEvent? I have tried the following, but it is not working:
protected
void
grid_CreateColumnEditor(
object
sender,Telerik.Web.UI.GridCreateColumnEditorEventArgs e)
{
if
(
//Some condition)
{
grid.MasterTableView.ClearEditItems();
}
}
//HÃ¥kan