diff --git a/components/table/src/table-data-source.ts b/components/table/src/table-data-source.ts index 518802e94a..0b539b71d5 100644 --- a/components/table/src/table-data-source.ts +++ b/components/table/src/table-data-source.ts @@ -113,6 +113,9 @@ export class DtTableDataSource extends DataSource { private _renderChangesSubscription = Subscription.EMPTY; private _searchChangeSubscription = Subscription.EMPTY; + /** Public stream emitting render data to the table */ + renderData = this._renderData.asObservable(); + /** Array of data that should be rendered by the table, where each object represents one row. */ get data(): T[] { return this._data.value;