2

在此处输入图像描述

如何将复选框值与事件绑定。以及如何访问相应的数据?

主页.ts

 columns = [
 {
  field: 'reportingLocation',
  headerName: 'Reporting Location '
 },
 {
  field: 'country',
  headerName: 'Country Name'
 },
 {
  field: 'DEL',
  headerName: 'DEL',
  editable:true,
  headerCheckboxSelection: true,
  headerCheckboxSelectionFilteredOnly: true,
  checkboxSelection: true
 } ];

我有一个函数来获取行DEL=TRUE

 deleteLocations(e) {
console.log(this.list);
e.preventDefault();
this.list
.filter((item: any) => {
  return !!item.DEL;
})
.map(item => {
  this.store.dispatch(new

 LocationAndResponsibilityActions.OnLocationDelete(item.location_Id));
  });  }

我无法访问DEL值,使用 agggrid 复选框选择的正确方法是什么?

4

1 回答 1

0

ag-grid 有许多选择事件,但听起来(rowSelected)可能是您正在寻找的。它将对象作为参数传回,其中包含行数据以及其他一些有用的属性。

普朗克

于 2019-02-19T17:03:06.780 回答