I use jqGrid 4.9.3-pre - free(Oleg). I do not use navbar panel
. How do I get at Ajax
after afterclickPgButtons
?
I found a lot of similar themes, but almost all the navbar to panel. similar question, but jqGridAddEditAfterClickPgButtons
callback I not found
ondblClickRow: function (rowid) {
$(this).jqGrid("viewGridRow", rowid, {
beforeShowForm: function(form) {
$.ajax({
url: 'apt_data.php',
method: 'POST',
dataType: 'json',
data: {id: rowid},
success: function(data) {
$(html_var).insertBefore($('#trv_tm', form));
}
});
},
caption: "Details of the invice"
});
},