Filters definitions that belong to this table from a QueryList.
(items: QueryList<I>)
| 1559 | |
| 1560 | /** Filters definitions that belong to this table from a QueryList. */ |
| 1561 | private _getOwnDefs<I extends {_table?: any}>(items: QueryList<I>): I[] { |
| 1562 | return items.filter(item => !item._table || item._table === this); |
| 1563 | } |
| 1564 | |
| 1565 | /** Creates or removes the no data row, depending on whether any data is being shown. */ |
| 1566 | private _updateNoDataRow() { |
no test coverage detected