(feature: any)
| 607 | } |
| 608 | |
| 609 | _isGrowingFeature(feature: any) { |
| 610 | return Boolean(feature.loadMore && feature.hasGrowingComponent && isFeature<ITableGrowing>(feature, "TableGrowing")); |
| 611 | } |
| 612 | |
| 613 | _onRowClick(row: TableRow) { |
| 614 | this.fireDecoratorEvent("row-click", { row }); |
nothing calls this directly
no test coverage detected