如何更改jqgrid searchoptions“选择选项”说明

时间:2019-08-22 02:11:29

标签: jqgrid

如何更改过滤器行上的搜索选项说明?

我可以在searchoptions函数上进行更改吗?

--defaults-extra-file

默认描述为“选择选项”。1

我要更改它。

非常感谢


我找到了解决方法:
在dataInit中添加“ noneSelectedText”。像这样

$("#project_jqGrid").jqGrid({
    url: 'PNInProcess.php',
    editurl: 'PNInProcessEdit.php',
    mtype: "POST",
    datatype: "json",
    page: 1,
    colModel: [
        {   label : "Status",
            name: 'Status',
            //key: true,
            width: 80,
            align: 'center',
            editable: true,
            edittype:'select',
            editoptions: { 
                value: "0:V;:"
            },
            stype: "select",
            searchoptions: {
                multiple:true,
                dataInit : function (elem) {},
                value: {'O':'O','X':'X','!':'!','V':'V'}
            }
        }
    ]
})

0 个答案:

没有答案