Hello, I have two different jqGrids in the same page. In the first grid I've set custom functions for the add and edit buttons in the navigator bar, using the following code:
$.jgrid.nav.addfunc =
function() {
$('#btninsreset').click();
};
$.jgrid.nav.editfunc =
function(id) {
editUscita(id);
};
In the second grid I'd like to have the default behaviour, but I get the same seetings as the first grid instead. How may I reset the navigator to the default settings for the second jqgrid? Thank you