I’ve copied the sample but am still not able to get the row selection to work. Is it possible there is a conflict with other jqxgrids on the page?
$("#agentMyQueue").on('click', function(){
console.log('clicked');
});
$("#agentMyQueue").on('rowdoubleclick', function (event) {
console.log('rowdoubleclick');
});
I’ve tried to test the click event, clicking on the div containing the JQ grid works everytime. I am still unable to get the ‘rowdoubleclick’ to fire. I have tried rowselect, cellselect, celldoubleclick using .bind and .on.
Thanks!