Hi,
Just wondering if there’s a way to set cell meta using physical row instead of visual? Source code suggests it’s doable but only via metaManager
, which is not exposed externally.
Our use case:
- User lands on a page with HandsOnTable and 2000 rows of data,
- User filters the table, bringing the data down to 100 rows,
- User enters some data, which triggers
afterChange
hook handler, -
afterChange
hook handler detects clash, trying to mark all clashed rows by adding comment to the first cell of each clashed row, - Part of the clashed rows are visible, comments added, but some rows are invisible due to the applied filter, there’s no way to add comments to them.
All boils down to setting cellMeta
using physical row, can anyone please shed some lights on this? Any help will be greatly appreciated!
Cheers,
Charles
edit: Turning the question to a feature request. Would be great to set comment using physical row as well. Currently if one wants to comment on hidden row due to filtering, they can only do that via a hidden column, and when filter/unfilter happened, looping through all visible rows to check if the row needs to have comment added. With large amount of data there’s a lot of unnecessary loops required.