Skip to content

Go to the last page on grid load

It's possible with javascript.

$(function(){
  #('$TABLENAME').setGridParam({
    page: $('#sp_1_TABLENAME_pager1').text()
  });
  #('$TABLENAME').trigger("reloadGrid");
})

Insert above BEFORE </body> and be sure to replace TABLENAME with the actual database table name for your grid.

Feedback and Knowledge Base