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;
}