如何更改 JQGrid 编辑对话框的大小?
在 JQGrid 网格中,当您选择一行并按下编辑按钮时,会弹出一个对话框,允许您在该行的字段中输入信息。如何指定弹出对话框的默认高度、宽度和位置?
In a JQGrid grid, when you select a row and press the edit button, a dialog box pops up to allow you to enter information in the fields of that row. How do you specify a default height, width, and location of the dialog box that pops up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据表单编辑文档,您可以使用以下内容选项:
top - 模式对话框的初始顶部位置。默认值 0 表示从网格左上角开始的顶部位置。当 jqModal 选项为 true(见下文)并且 jqModal 插件存在时,任何不同于 0 的值都表示距离窗口左上角的顶部位置。
left - 模式对话框的初始左侧位置。默认值 0 表示从网格左上角开始的左侧位置。当 jqModal 选项为 true(见下文)并且 jqModal 插件存在时,任何不同于 0 的值均表示距窗口左上角的左侧位置。
width - 确认对话框的宽度
According to the docs for Form Editing, you can use the following options:
top - the initial top position of modal dialog. The default value of 0 mean the top position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the top position from upper left corner of the window.
left - the initial left position of modal dialog. The default value of 0 mean the left position from the upper left corner of the grid. When jqModal option is true (see below) and jqModal plugin is present any value different from 0 mean the left position from upper left corner of the window.
width - the width of confirmation dialog
这对我有用。
JqGrid如何更改编辑表单的宽度?
This worked for me.
JqGrid How to change width of edit form?