尝试使用jqgrid进行多次搜索,但只弹出单个搜索GUI

时间:2011-03-10 11:01:37

标签: jquery jqgrid

我希望实现比jqgrid中的过滤器工具栏更高级的搜索,所以我将我的代码更改为设置multipleSearch:true:

jQuery("#grid").navGrid("#pager",
        { multipleSearch:true, add: false, edit: false, del: false },
        {}, {}, {}, {}

我的页脚工具栏中有搜索图标 enter image description here

但是当我点击它时,我只得到单个字段搜索GUI。 enter image description here

有谁知道为什么这不会显示多个搜索GUI?我错过了一些额外的插件或配置设置吗?

1 个答案:

答案 0 :(得分:2)

您应该在navGrid的其他参数中使用multipleSearch:true

jQuery("#grid").navGrid("#pager",
        { add: false, edit: false, del: false }, // navGrid options
        {}, // edit option
        {}, // add options
        {}, // del options
        {multipleSearch:true}  // !!! search options !!!
);