当我们在某些字段上分组行时,如何为JQGrid进行全局展开/折叠?

时间:2011-12-03 16:35:02

标签: javascript jquery jquery-plugins jqgrid

当我们在某个字段上分组行时,如何为JQGrid进行全局展开/折叠?

在扩展时,它应该展开所有组,并且在折叠时应该折叠所有组。

3 个答案:

答案 0 :(得分:3)

您可以像设置任何其他默认参数一样设置jqGrid的groupCollapse参数的groupingView属性的默认值:

$.extend($.jgrid.defaults, {
    groupingView: {
        groupCollapse: true
    }
});

更新:在评论中进一步说明后,我可以想象,在某些情况下,当所有组将被展开/折叠时,它可能会有行为小组将被扩展/折叠。

var $grid = $("#list"), inOnClickGroup = false;

$grid.jqGrid({
    // ... other options
    grouping: true,
    onClickGroup: function (hid) {
        var idPrefix = this.id + "ghead_", id, i, l,
            groups = this.p.groupingView.sortnames[0];

        if (!inOnClickGroup && hid.length > idPrefix.length &&
                hid.substr(0, idPrefix.length) === idPrefix) {
            id = Number(hid.substr(idPrefix.length));
            if (typeof (groups[id]) !== "undefined") {
                inOnClickGroup = true; // set to skip recursion
                for (i = 0, l = groups.length; i < l; i++) {
                    if (i !== id) {
                        $(this).jqGrid('groupingToggle', this.id + 'ghead_' + i);
                    }
                }
                inOnClickGroup = false;
            }
        }
    }
});

请参阅the demo

答案 1 :(得分:1)

$('#grid-expand-collapse').change(function () {

    var idPrefix = "MyGridghead_", index, length, tarspan;
    var groups = $(options.gridElement)[0].p.groupingView.sortnames[0];

    if ($(this).is(':checked')) {

        for (index = 0, length = groups.length; index < length; index++) {

            tarspan = $("#MyGridghead_" + index + " span." + "tree-wrap-" + $(options.gridElement)[0].p.direction);
                if (!tarspan.hasClass($(options.gridElement)[0].p.groupingView.minusicon)) {
                    $(options.gridElement).jqGrid('groupingToggle', 'MyGridghead_' + index);
                }
        }
    }
    else {
        for (index = 0, length = groups.length; index < length; index++) {

            tarspan = $("#MyGridghead_" + index + " span." + "tree-wrap-" + $(options.gridElement)[0].p.direction);
            if (tarspan.hasClass($(options.gridElement)[0].p.groupingView.minusicon)) {
                $(options.gridElement).jqGrid('groupingToggle', 'MyGridghead_' + index);
            }
        }
    }

});

答案 2 :(得分:-3)

$('#jqxGrid').jqxGrid({
    groupsexpandedbydefault: true
});

对我来说就像一个魅力(source)。