Search code examples
jqueryjqgridtitlebar

jqgrid set filter toolbar before titlebar


I have a jqgrid with a filterToolbar correctly displaying:

jQuery("#myGrid").jqGrid('filterToolbar',{autosearch:true});

I want it to display before the titlebar, how can I manage this?

Thanks


Solution

  • Try using toolbar option to place the toolbar at the top of the grid:

    toolbar: [true, "top"]
    

    This seems to achieve the effect you are looking for, as demonstrated on the demo page under New in version 3.1 | Toolbars and userdata.

    Does that help?