我正在使用JQgrid我的问题是当我点击添加(+)按钮时,表单已打开以添加记录。我希望保持此表单打开,直到用户点击保存或取消。
目前,当我在表单外点击时,它正在关闭。
我搜索但未找到结果,请帮帮我
答案 0 :(得分:0)
我建议您使用jqGrid表单编辑的jqModal: false
选项。
您可以通过扩展$.jgrid.edit
来设置默认选项。例如
$.extend($.jgrid.edit, {
jqModal: false, // it's the option which you need
closeAfterAdd: true,
closeAfterEdit: true,
recreateForm: true,
closeOnEscape: true
});