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 width
and height
described here, here and here. Mostly you need use only width
property (like width:500
).
精彩评论