For example if I have this:
|
1 2 3 4 |
ondblClickRow: function(rowid, iRow, iCol, e) {<br /> $(this).jqGrid('editGridRow', rowid);<br /> e.stopPropagation();<br /> }<br /> |
And then:
|
1 2 3 4 5 |
.jqGrid('navGrid', '#pager', {'add':true,'edit':true,'del':true}, {<br /> beforeShowForm: function(form) {<br /> console.log(123);<br /> }<br /> })<br /> |
The event will be triggered on edit button, but not on double click.
Do they need to be triggered manually?
Do I need to use a different event?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top