Hi,
I have my grid with following config:
grid.jqGridImport({
impurl: '…',
mtype: 'POST',
imptype: 'json',
importComplete: function(){
$(“#grid”).jqGrid('setGridParam', {
ondblClickRow: function(id) {
alert(id); // not working
},
onSelectRow: function(id) {
alert(id); // working
}
});
}
});
I actually want to implement a double click inline edit but ehe ondblClickRow is never called.
I'm using version 3.8.2.
Thanks.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top