0

我正在使用 ag 网格来显示使用 Vue.js 的表格。我有一个这样的列定义:

        {
          headerName: "Status",
          field: "featureStatus",
          width: 110,
          editable: true,
          cellEditor: "agSelectCellEditor ",
          cellEditorParams: {
            values: []
          }
        },

this.allFeatureStatusNames 是一个返回字符串数组的计算变量:

 allFeatureStatusNames: function() {
      return this.allFeatureStatuses.map(status => status.name)
    }

我在 allFeatureStatuses 上有一个观察者,我想在创建表后更新 cellEditorParams:

    allFeatureStatuses: function() {
      let colDef = this.columnDefs.find(col => col.headerName == "Status")

      if (colDef) {
        colDef.cellEditorParams = {
          values: this.allFeatureStatusNames
        }
      }

      this.gridColumnApi.refreshCells()
    },

我遇到的问题是单元格编辑器永远不会更新。它总是空的。创建表格后如何刷新或更新 cellEditorParams?

4

1 回答 1

2

尽管使用您的方法,但问题可能是您的 colDef 对象没有得到更新,因为您正在尝试修改现有对象并创建新的 colDef 可能对您有用。

像下面这样的东西对我有用 -

cellEditorParams: this.getValues.bind(this);

getValues: function() {
   let allowedVals = this.allFeatureStatusNames;
   return { values : allowedVals};
}
于 2020-05-27T03:26:01.937 回答