Suppose I have the following (short for simplicity):
jQuery("#grid").jqGrid({ ... ondblClickRow: function() {
How to bind the ondblClickRow event outside the Slow grid. For example, in jQuery I usually did
$('#grid').bind('ondblClickRow', function() { alert('my over written event'); });
source share