如何动态更改(删除或添加)表单选项:{elmprefix:“*”}

发布于 2025-01-06 02:52:31 字数 1022 浏览 0 评论 0原文

我正在 beforeShowForm 函数中控制 colProp 所需的值,并且它工作正常。我的问题是 formoptions:{elmprefix:"*"} 不起作用。 我做错了什么吗?还有其他方法吗? 我的代码片段是这样的

$grid2.jqGrid('navGrid', '#pager',
    { edit:true, add:true, del:true, search:false, view:true, cloneToTop:true},
    { // edit options  
        beforeShowForm: function(form) {   
            $("#list").setColProp('Done_Date',
                {editrules:{required:true}, formoptions:{elmprefix:"*"}});
            $("#list").setColProp('Outcome',
                {editrules:{required:true}, formoptions:{elmprefix:"*"}});      
        },     
        editCaption:"Edit Record",
        edittext:"Edit",
        closeOnEscape:true,
        savekey: [true,13],
        errorTextFormat:commonError,
        width:"550",
        reloadAfterSubmit:true,
        bottominfo:"Fields marked with (*) are required",
        top:"60",
        left:"70",
        closeAfterEdit:false
    },

提前致谢 标记

I'm controlling the colProp required value in the beforeShowForm function and its working fine. My problem is the formoptions:{elmprefix:"*"} does not take effect.
Am I doing something wrong? Is there another way to do it?
My code snippet is this

$grid2.jqGrid('navGrid', '#pager',
    { edit:true, add:true, del:true, search:false, view:true, cloneToTop:true},
    { // edit options  
        beforeShowForm: function(form) {   
            $("#list").setColProp('Done_Date',
                {editrules:{required:true}, formoptions:{elmprefix:"*"}});
            $("#list").setColProp('Outcome',
                {editrules:{required:true}, formoptions:{elmprefix:"*"}});      
        },     
        editCaption:"Edit Record",
        edittext:"Edit",
        closeOnEscape:true,
        savekey: [true,13],
        errorTextFormat:commonError,
        width:"550",
        reloadAfterSubmit:true,
        bottominfo:"Fields marked with (*) are required",
        top:"60",
        left:"70",
        closeAfterEdit:false
    },

Thanks in advance
Mark

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剑心龙吟 2025-01-13 02:52:31

您应该使用 beforeInitData 而不是 beforeShowForm 能够在创建表单期间动态更改 elmprefix 设置。此外,您应该使用 recreateForm: true 属性。

我建议您阅读这篇文章,其中描述了如何格式化问题内的代码。

The you should use beforeInitData instead of beforeShowForm to be able to change elmprefix setting on the fly during creating of the form. Additionally you should use recreateForm: true property.

I would recommend you to read the post which describes how to format the code inside of the question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文