Hi Dimitar. I have tried that (sorry, should have mentioned this), however this sometimes results in the details grid updating wrongly. First it will update and display the correct data for a second or so, but will then revert back and show the first page of the data connected to the previous selected row in the master grid. Perhaps this is due to the fact that the second call to .jqxGrid(…) completes before the .jqxGrid(‘gotopage’,0) has completed?
Is there a way to ensure that the two calls will always be handled in the sequence they were called?
$(‘#Grid_Students’).jqxGrid(‘gotopage’, 0);
…
$(“#Grid_Students”).jqxGrid({ source: studentDataAdapter });
//Martin