kendo-grid Angular detailExpand dataItem为null

时间:2019-10-11 22:42:21

标签: angular kendo-grid

html中的kendo-gridDetail展开绑定到calculateTotals

<kendo-grid #vendorGrid
      [height]="600"
      [data]="products"
      (detailExpand)="calculateTotals($event)">

在ts文件中,控制台可以显示dataItem,但是如果语句dataItem为null,我在哪里写代码错误?

calculateTotals(dataItem: ProductModel) {
    console.log(dataItem);
    if (dataItem == null || dataItem.pricings == null) {
        return;
    }

0 个答案:

没有答案