Skip to content

Collapse Datagrid on Initial Display

You can minimize the grid by executing the script similar to below AFTER the grid has been loaded. Replace with your the name of your database table please.

$(function(){
    $(".ui-jqgrid-titlebar-close",$('#YOUR_TABLE_NAME')[0].grid.cDiv).click();
});

Feedback and Knowledge Base