如何使用带有角度的ag-grid复选框

时间:2017-12-20 14:32:55

标签: angular checkbox ag-grid ag-grid-ng2

enter image description here

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

home.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值,使用aggrid复选框选择的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

ag-grid有多个selection events,但听起来(rowSelected)可能正是您想要的。它将对象作为参数传递回去,该参数包含行数据以及一些其他有用的属性。

Plunker