JqG​​rid,更改宽度表单编辑

时间:2011-11-15 16:47:03

标签: jqgrid

我有一个带有表单编辑选项的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'} });
                }
            },

我错过了什么吗?

提前感谢您的回答!

1 个答案:

答案 0 :(得分:3)

width属性应该是一个数字。您应该将width: '100px'替换为width: 100