how can I set the width and height of edit/add panel that appear if I click on add record button of jqGrid?
jQuery("#tabImprese").jqGrid({...}).navGrid('#pagerImprese',
{
}, //options
{
}
}, // edit options
{
reloadAfterSubmit:false
}, // add options
{
reloadAfterSubmit:true
}, // del options
{
reloadAfterSubmit:true
} // search options
);
Thanks.
You should just use the corresponding properties
widthandheightdescribed here, here and here. Mostly you need use onlywidthproperty (likewidth:500).