在内联编辑中的beforeShowform

时间:2013-05-13 04:03:08

标签: jqgrid jqgrid-formatter jqgrid-inlinenav

是否可以在内联编辑中触发beforshowform事件,因为根据维基,我无法在使用选项editformbutton:true进行内联编辑的show form之前找到任何解决方案。非常感谢任何帮助

1 个答案:

答案 0 :(得分:1)

内联编辑不显示任何表单。因此,在内联编辑模式下无法使用beforeShowForm

你写过关于editformbutton: true的用法。所以你可能会在属性中使用formatter: "actions"。在您使用表单编辑的情况下。您可以在editOptions选项中指定任何表单编辑选项(请参阅the documentation)。因此formatter: "actions"的使用应如下所示

formatter: "actions",
formatoptions: {
    editformbutton: true,
    editOptions: {
        beforeShowForm: function ($form) {
            alert("In beforeShowForm");
        }
    }
}