Adding more than two columng group headers in jqgrid

前端 未结 2 1815
暖寄归人
暖寄归人 2021-02-04 14:56

multi level group headers in jqgrid

This is a direct response to the answer listed in the above question, but I can\'t add to that conversation.

I understand tha

2条回答
  •  心在旅途
    2021-02-04 15:41

    The reason of restriction of one level of group headers in jqGrid exist because jqGrid provide more as just displaying the headers. You can see on the example of the demo created for the answer that the column headers after grouping are clickable (to sort by the column) and resizable (by drag&drop on the separator between column headers). If you use titleText option of setGroupHeaders you can include HTML fragments, inclusive

    element, in the column header. It gives you the possibility to display milti-level headers. One can include resizable: false to deny resizing or one can write which custom resizeStop handler which resizes columns in the table added by titleText option of setGroupHeaders.

    All what I described above sound theoretical. So I wrote the small demo which demonstrates the approach. It displays the following grid

    enter image description here

    The demo is written not for the common case, but it's clear that one can use it as basis to more common solution. In any way I hope that you can change it to any your multi-level grid.

    The most important parts of the demo you will find below:

    var grid = $("#list"),
        setHeaderWidth = function () {
            var $self = $(this),
                colModel = $self.jqGrid("getGridParam", "colModel"),
                cmByName = {},
                ths = this.grid.headers, // array with column headers
                cm,
                i,
                l = colModel.length;
    
            // save width of every column header in cmByName map
            // to make easy access there by name
            for (i = 0; i < l; i++) {
                cm = colModel[i];
                cmByName[cm.name] = $(ths[i].el).outerWidth();
            }
            // resize headers of additional columns based on the size of
            // the columns below the header
            $("#h1").width(cmByName.amount + cmByName.tax + cmByName.total - 1);
            $("#h2").width(cmByName.closed + cmByName.ship_via - 1);
        };
    
    grid.jqGrid({
        ...
        colModel: [
            {name: "id", width: 65, align: "center", sorttype: "int", hidden: true},
            {name: "invdate", width: 80, align: "center", sorttype: "date",
                formatter: "date", formatoptions: {newformat: "d-M-Y"}, datefmt: "d-M-Y"},
            {name: "name", width: 70},
            {name: "amount", width: 75, formatter: "number", sorttype: "number", align: "right"},
            {name: "tax", width: 55, formatter: "number", sorttype: "number", align: "right"},
            {name: "total", width: 65, formatter: "number", sorttype: "number", align: "right"},
            {name: "closed", width: 75, align: "center", formatter: "checkbox",
                edittype: "checkbox", editoptions: {value: "Yes:No", defaultValue: "Yes"}},
            {name: "ship_via", width: 100, align: "center", formatter: "select",
                edittype: "select", editoptions: {value: "FE:FedEx;TN:TNT;IN:Intim", defaultValue: "IN"}},
            {name: "note", width: 70, sortable: false}
        ],
        resizeStop: function () {
            // see https://stackoverflow.com/a/9599685/315935
            var $self = $(this),
                shrinkToFit = $self.jqGrid("getGridParam", "shrinkToFit");
    
            $self.jqGrid("setGridWidth", this.grid.newWidth, shrinkToFit);
            setHeaderWidth.call(this);
        }
    });
    grid.jqGrid ("navGrid", "#pager",
                 {edit: false, add: false, del: false, refresh: true, view: false},
                 {}, {}, {}, {multipleSearch: true, overlay: false});
    grid.jqGrid("setGroupHeaders", {
        useColSpanStyle: true,
        groupHeaders: [{
            startColumnName: "amount",
            numberOfColumns: 5,
            titleText:
                '
    ' + '' + '' + '' + '' + '' + '
    Details
    PriceShiping
    ' }] }); $("th[title=DetailsPriceShiping]").removeAttr("title"); $("#h0").css({ borderBottomWidth: "1px", borderBottomColor: "#c5dbec", // the color from jQuery UI which you use borderBottomStyle: "solid", padding: "4px 0 6px 0" }); $("#h1").css({ borderRightWidth: "1px", borderRightColor: "#c5dbec", // the color from jQuery UI which you use borderRightStyle: "solid", padding: "4px 0 4px 0" }); $("#h2").css({ padding: "4px 0 4px 0" }); setHeaderWidth.call(grid[0]);

    UPDATED: More later code of setGroupHeaders allows multiple calls of setGroupHeaders on the same grid. In the way one can do create multi-level headers. jqPivot uses the feature (see the wiki).

提交回复
热议问题