jqgrid with jquery ui Redmond theme is used.
Top level toolbar contains standard add, delete etc buttons and custom buttons created like
$grid = $("#grid");
$grid.jqGrid("navGrid", "#grid_toppager", {
search: true,
del: true,
add: true,
refresh: true,
edit: true } );
$grid.jqGrid('navButtonAdd', '#grid_toppager', {
caption: '',
id: "grid_printbutton",
title: 'Print order',
buttonicon: 'ui-icon-print'
});
html:
<div id="grid1container" style="width: 100%; height: 100%">
<table id="grid">
</table>
</div>
Buttons contain only icons, no caption. Page contains also toolbar with normal buttons created using jquery ui button() function. jqgrid button height and width is smaller than normal buttons created using jquery ui button function. It is difficult for users to click them in typical screen resolution.
How to make jqgrid top level toolbar buttons sizes the same as standard jquery ui buttons ? Can buttons width and height increased or is it possible to create other toolbar with same buttons and force them to invoce correspondiga jqgrid toolbar button actions ?