在Kendo Angular 2网格中获取选定的行项目

时间:2018-09-20 19:25:40

标签: angular kendo-ui

我的网格看起来像这样

enter image description here

我有多个复选框,我希望能够在一次单击事件中获取所选组织的ID。我可以使用

获取所有组织的值
this.mySelection = this.allChecked ? this.orgContacts.map(pr => pr.OrgID) : [];
alert(this.mySelection);

我还能够使用

获取单个值的值
public cellClickHandler({ sender, rowIndex, columnIndex, dataItem, isEdited }) {
     alert(dataItem.UserName);
  }

但是,无法找出仅提取已检查的项目。

0 个答案:

没有答案