4

是否可以在 ag-grid angularjs 中设置 columnDefs 索引值?

根据加载时间的用户,我需要更改 col 的顺序。

对于某些用户,我需要按此顺序显示网格数据。

在网格中 Col1:模型,Col2:费率,Col3:价格 **参考图片**

对于某些用户,我需要按此顺序显示网格数据。

在网格中 Col1:价格,Col2:价格,Col3:型号

在此处输入图像描述

4

1 回答 1

1

在 ag-grid.js 中替换这个函数

   ColumnController.prototype.extractRowGroupColumns = function () {
            var _this = this;
            this.rowGroupColumns = [];
            // pull out the columns
            this.allColumns.sort(function(a, b){
             return a.colDef.seqNo-b.colDef.seqNo
            })

            this.allColumns.forEach(function (column) {

                if (typeof column.getColDef().rowGroupIndex === 'number') {
                    _this.rowGroupColumns.push(column);
                }

            });
            // then sort them
            this.rowGroupColumns.sort(function (colA, colB) {
                return colA.getColDef().rowGroupIndex - colB.getColDef().rowGroupIndex;
            });
        };

在标题数据中添加一列名为 seqNo 之类的

   $scope.gridheaders = [
                    {headerName: "ID", field: "ID", seqNo:0},
                    {headerName: "Patient Name", field: "PatientName", seqNo:1},
                    {headerName: "Gender", field: "Gender", seqNo:3},
                    {headerName: "Age", field: "Age", seqNo:2},
                    {headerName: "Phone Number", field: "mobileNumber", seqNo:4}
                ];

然后根据用户动态设置seqno...

于 2016-02-24T09:44:32.350 回答