Hi,
In order to fix the issue you have to check that you are on same grid, and to do so see the below code:
var $jqxgrid=$("#jqxgrid");
$jqxgrid.jqxGrid({
handlekeyboardnavigation:function(event) {
if($(event.target).closest($jqxgrid).length){ // check the closest is same as your grid element.
if(event.keyCode===13){
// your code here.
}
}
}
});
Regards
Indresh Singh