MVC 5; .Net Core; Visual Studio 2017; Telerik 2019.2.514
I have a grid that uses SetOptions to load the users saved state. I am using incell editing. After using setOptions my events for Editable no longer get hit. Is there something I have to set manually after this like with the command buttons?
--Below I reassign the btnEdit event to the command button
var options = JSON.parse(response.myOptions);
options.columns[0].command[0].click = btnEdit;
grid.setOptions(options);
--My cell from grid
columns.Bound(p => p.ClearedBy).Title(text: "Cleared by").Editable("ClearedByEditable").Lockable(true);
--My Editable Event
function ClearedByEditable(e) {
Alert("I am here");
return false;
}