I want to add load event in editoption of jqGrid.
My code is like this:
dataEvents: [
{
type: 'change',
fn: function (e)
{
Myfunction();
}
},
{
type: 'load',
fn: function (e)
{
Myfunction();
}
}]
My problem is: The change event is called very well, but the load event is not called.