NOTE: this is the JQGrid MVC component I am asking about which is created in C# server side.
I'm trying to get the ClientSideEvents to fire when a row is deleted.
ClientSideEvents = new ClientSideEvents()
{
AfterDeleteDialogRowDeleted = "doUpdates"
AfterAjaxRequest = "test",
},
The only one that actually calls anything is AfterAjaxRequest which will call a test javascript function
function test() {
alert('test');
}
function doUpdates() {
alert('doUpdates');
}
any ideas, this is driving me crazy!