Posts by Ricardo • 11 points
2 posts
-
1
votes1
answer355
viewsA: How to take a value of a cell with mouseover in jqgrid?
For those who might be interested, I’ve already found the solution: $("#jqItensped").mouseover(function(e){ var tr = jQuery(e.target).closest('tr.jqgrow'); var wGrid = $('#jqItensped'); var rowId =…
-
0
votes1
answer355
viewsQ: How to take a value of a cell with mouseover in jqgrid?
I need to take the value of a specific cell and move it to another cell tag HTML with mouseover. I’ve tried to: gridComplete: function () { $('.jqgrow').mouseover(function(e) { var rowId =…