The code below returns the correct row on Chrome, but not on Firefox. It works only when number of elements are lower than window height
this.grid.on(".dgrid-row:contextmenu", function(evt){
evt.preventDefault(); // prevent default browser context menu
var row = self.grid.row(evt);
});
The code below returns the correct row on Chrome, but not on Firefox. It works only when number of elements are lower than window height
this.grid.on(".dgrid-row:contextmenu", function(evt){
evt.preventDefault(); // prevent default browser context menu
var row = self.grid.row(evt);
});