因此,在使用“ ServerRow”模型时,我们将无法获得标题中的全选复选框,也无法使用默认包含在网格API中的selectAll()和deselectAll()方法。
我已经编码了自己的组件以使用Vuetify进行替换。唯一的问题是,当手动选择行时,我似乎无法做出反应。
是否有任何反应性属性,可能包含散列,可以将其用作更新组件的键?此ServerRow模型仅适用于已购买开发人员许可证的人员,因此我无法在此处准确放置JsFiddle。
<template>
<div>
<v-checkbox class="" value :input-value="state == 'all'" :indeterminate="state == 'some'" @click.prevent.stop="onClick()"></v-checkbox>
</div>
</template>
<script>
import { agGridHeaderComponentMixin } from '@mixins/agGrid/agGridHeaderComponentMixin';
export default {
mixins: [ agGridHeaderComponentMixin ],
data: function () {
return {
state: 'none',
};
},
updated(){
console.log('updated',
this._api.getSelectedRows().length,
);
},
methods: {
refresh(params) {
this.params = params;
},
onClick(){
var tempState = this.state;
if(tempState == 'some' || tempState == 'all'){
this.state = 'none';
this.deselectAll();
} else if (tempState == 'none'){
this.state = 'all';
this.selectAll();
}
},
selectAll(){
this.params.api.forEachNode(node => node.setSelected(true, false));
console.log({selected: this._api.getSelectedNodes()})
},
deselectAll(){
this._api.forEachNode(node => node.setSelected(false, true));
console.log({selected: this._api.getSelectedNodes()})
},
getSelectedNodes(){
return this._api.getSelectedNodes();
},
getAllNodes(){
const rowData = [];
this._api.forEachNode(node => rowData.push(node.data));
return rowData;
}
}
};
</script>
以上是我构建的当前标头组件。 this._api = this.params.api。