Hello,
I have a grid loaded with local data. It has some initial filters set. I would like to update an external div with the found count after the table loads and filters.
For example, if I have 500 records, and after loading and filtering there are 200 records displayed, how can I get that count?
<GridComponent
dataSource={tableData}
filterSettings={filterOptions}
>
<ColumnsDirective>
{columnDirectives}
</ColumnsDirective>
<Inject services={services} />
</GridComponent >;
<div>Count: </div>