我有一个带有表单编辑选项的JqGrid。 当我单击添加或编辑时,会出现对话框但宽度占据我的所有屏幕。我想要的是设置一个特定的宽度。我试过使用width属性,但它不起作用。
$('#jqgCompLine').jqGrid('navGrid', '#jqgpCompLine',
{ add: true, del: true, edit: true, search: false },
{ width: '100px', url: '@Url.Action("Update")', closeOnEscape: true,
beforeShowForm: function (form) {
$('#tr_TrC', form).attr('disabled', true);
$('#tr_All', form).attr('disabled', true);
$('#tr_Pe', form).attr('disabled', true);
},
beforeInitData: function () {
$("#jqgCompLine").setColProp('Cur', { formoptions: { label: 'Currency'} });
$("#jqgCompLine").setColProp('FCur', { formoptions: { label: 'Converted Currency'} });
}
},
我错过了什么吗?
提前感谢您的回答!