Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 JQgrid 我的问题是当我单击添加(+)按钮时,表单打开以添加记录。我想保持此表单打开,除非用户单击保存或取消。
目前,当我在表单之外单击时它正在关闭。
我搜索但没有找到结果,请帮助我
我建议您使用jqModal: falsejqGrid 表单编辑选项。
jqModal: false
您可以通过扩展来设置默认选项$.jgrid.edit。例如
$.jgrid.edit
$.extend($.jgrid.edit, { jqModal: false, // it's the option which you need closeAfterAdd: true, closeAfterEdit: true, recreateForm: true, closeOnEscape: true });