jqGrid“_search”参数始终为false

时间:2017-05-08 10:38:44

标签: jquery jsp jqgrid

我在我的代码中使用jqGrid并且有一点问题 以下是asd.jsp的代码:

jQuery().ready(function ()
{

    $("#myGridId").jqGrid({
        url: "getListAsd.jsp",
        datatype: "json",
        colNames: ['menu', 'name', 'price'], 
        colModel: [
            {index: "menu", width: 250, sortable: true, editable: true, edittype: "text"},
            {index: "name", width: 250, sortable: true, editable: true, edittype: "text"},
            {index: "price", width: 100, sortable: true, editable: true, edittype: "text", align: "right"}
        ],
        rowNum: 35,
        height: 780,
        autowidth: false,
        sortname: "price",
        sortorder: "desc", 
        viewrecords: true,         
        pager: '#gridpager',
    })                
            .jqGrid('filterToolbar', { searchOnEnter: true, enableClear: true }) // make search available in each column
            .navGrid('#gridpager', {edit: true, add: true, del: true, search: false, view: false},
                    {multipleSearch: true} // search options
            );
});

以下是getListAsd.jsp的代码:

if (request.getParameter("_search") != null) {
    search = java.lang.Boolean.parseBoolean(request.getParameter("_search"));
}
if (search) {
    // some search things here...
}

在gridpager中,我需要search: false,因为我想在每列中搜索,而不是使用默认搜索按钮。
所以问题是_search总是假的。

1 个答案:

答案 0 :(得分:1)

问题解决了。 似乎jqGrid需要name属性才能正确执行列内搜索 来自asd.jsp的新代码:

colModel: [
        {name: "menu", index: "menu", width: 250, sortable: true, editable: true, edittype: "text"},
        {name: "name", index: "name", width: 250, sortable: true, editable: true, edittype: "text"},
        {name: "price", index: "price", width: 100, sortable: true, editable: true, edittype: "text", align: "right"}
    ],