jqGrid过滤器工具栏只显示单列的搜索运算符选择器

时间:2013-07-17 13:24:57

标签: jqgrid jqgrid-asp.net

我有很多列的jqGrid表。使用过滤器工具栏在网格中搜索。对于大多数人来说,搜索只是简单的默认运算符。对于一个datetime列,我想要不同类型的运算符和datepicker选择器。 我已将dataInit datepicker初始化添加到searchoptions,必要的运算符添加到searchoptions.sopt。为了显示这个运算符,我将searchOperators设置为true。所以对于这个专栏,一切都还可以。我有带操作符选择器弹出窗口的datepicker。但对于所有其他列,默认运算符图标显示在其左侧。操作员是默认的并且用户无法更改它,这很烦人。那么有可能使用jqGrid API隐藏它们吗?据我所知,我只能使用我的自定义代码隐藏它:

我需要检查我的列模型,并在渲染网格后(可能在loadComplete中)检查所有具有空soptsopt.length == 0的列以删除操作符选择器。或者添加隐藏它的CSS类。不确定哪种解决方案更好(隐藏或删除),因为删除可能会破坏某些逻辑,隐藏可能会影响宽度计算。以下是我在fiddle

上的含义示例
function fixSearchOperators()
{
    var columns = jQuery("#grid").jqGrid ('getGridParam', 'colModel');
    var gridContainer = $("#grid").parents(".ui-jqgrid");
    var filterToolbar = $("tr.ui-search-toolbar", gridContainer);

    filterToolbar.find("th").each(function()
    {
        var index = $(this).index();
        if(!(columns[index].searchoptions &&
             columns[index].searchoptions.sopt &&
             columns[index].searchoptions.sopt.length>1))
        {
            $(this).find(".ui-search-oper").hide();
        }
    });
}

有人有更好的想法吗?

1 个答案:

答案 0 :(得分:7)

我发现定义在每个列非常好的想法中定义搜索操作的可见性的想法。来自我的+1。

我只建议您稍微更改选择搜索工具栏的哪些列将获得搜索操作的标准。在我searchoptions中包含一些新属性似乎更原生。这样你就可以写出像

这样的东西
searchoptions: {
    searchOperators: true,
    sopt: ["gt", "eq"],
    dataInit: function(elem) {
        $(elem).datepicker();
    }
}

我认为某些列(例如stype: "select"列)可能仍需要sopt(至少sopt: ["eq"]),但有人不希望看到搜索运算符这样的专栏。在这种情况下,在列级别指定搜索操作的可见性非常实用。

您可以找到here的修改过的小提琴演示。我在the fix中包含了演示CSS(请参阅the answerthe corresponding bug report)。完整代码位于

之下
var dataArr = [
    {id:1, name: 'steven', surname: "sanderson", startdate:'06/30/2013'},
    {id:2, name: "valery", surname: "vitko", startdate: '07/27/2013'},
    {id:3, name: "John", surname: "Smith", startdate: '12/30/2012'}];

function fixSearchOperators() {
    var $grid = $("#grid"),
        columns = $grid.jqGrid ('getGridParam', 'colModel'),
        filterToolbar = $($grid[0].grid.hDiv).find("tr.ui-search-toolbar");

    filterToolbar.find("th").each(function(index) {
        var $searchOper = $(this).find(".ui-search-oper");
        if (!(columns[index].searchoptions && columns[index].searchoptions.searchOperators)) {
            $searchOper.hide();
        }
    });
}

$("#grid").jqGrid({
    data: dataArr,
    datatype: "local",
    gridview: true,
    height: 'auto',
    hoverrows: false,
    colModel: [
        { name: 'id', width: 60, sorttype: "int"},
        { name: 'name', width: 70},
        { name: 'surname', width: 100},
        { name: 'startdate', sorttype: "date", width: 90,
            searchoptions: {
                searchOperators: true,
                sopt: ['gt', 'eq'],
                dataInit: function(elem) {
                    $(elem).datepicker();
                }
            },
            formatoptions: {
                srcformat:'m/d/Y',
                newformat:'m/d/Y'
            }
        }
    ]
});

$("#grid").jqGrid('filterToolbar', {
    searchOnEnter: false,
    ignoreCase: true,
    searchOperators: true
});
fixSearchOperators();

它显示与青年相同的结果:

enter image description here