jquery - jqgrid sortableRows and bindKeys -
reason why bindkeys doesn't work
$(selector).jqgrid("bindkeys", { "onenter": function (rowid) { alert("you enter row id:" + rowid) } });
if use sortablerows
$(selector).sortablerows();
this jqgrid 4.6.0
as @oleg said, post answer here. @tony tomov commented. problem fixed in last build pasted code
$($t).on('click', function(e) { $(e.target, $t.rows).closest("tr.jqgrow").focus(); });
into line 3866 (jqgrid 4.6.0) resolved problem.
Comments
Post a Comment