如何将复选框值与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复选框选择的正确方法是什么?
答案 0 :(得分:0)
ag-grid有多个selection events,但听起来(rowSelected)
可能正是您想要的。它将对象作为参数传递回去,该参数包含行数据以及一些其他有用的属性。