hello,
I would like to create a toolbar in jqGrid with only the buttons that usually are on the pager.
At the moment I have the following definition
$("#foroGrid").jqGrid('navGrid', '#pager',
{ add: true, addtitle: 'Add Foro',
edit: true, edittitle: 'Edit Foro',
del: true, deltitle: 'Delete Foro',
refresh: true, refreshtitle: 'Refresh data',
search: true, searchtitle: 'Show Filters',
addfunc: addForo, editfunc: editForo, delfunc: deleteForo },
{}, // default settings for edit
{}, // default settings for add
{}, // default settings for delete
{ closeOnEscape: true, multipleSearch: true, closeAfterSearch: true }, // search options
{}
);
and I have the requirement to add other functions like "CSV Export", "PDF Export", "Print", and so on...
It turns out that the space is going to be full and I would like to move the buttons in a toolbar on the top while still having the pager with navigator and record count info on the bottom.
Is it possible to achieve this configuration with jqGrid?