1
tvaLst = [{ 番号:1、 TAUX:5、 OLE:真}、{ ID:2、 TAUX:13.01、 OLE:偽 }]。DevExtremeグリッド - 編集モード
上記のオブジェクトリストを取得すると、oleという属性がtrueに設定されている行のtaux値と2番目の列に[Edit and Delete Option Only]を表示したいとします。
this.gridSettings = {
bindingOptions: { dataSource: 'vm.tvaLst' },
allowColumnResizing: true,
scrolling: { mode: 'virtual' },
onContentReady: this.contentReadyAction,
paging: { enabled: false },
editing: {
mode: "row",
allowUpdating: true,
allowDeleting: true,
allowAdding: true
},
columns: this.gridColumns
};
これを許可するにはどうすればよいですか?