My Objective:
after inline editing the filters are recalculated. Maybe a row disapears. How can I achieve this?
I guess I need a hook …
Additionally I want to rerender all cells, with other words call ‘cell’.
Refiltering after cell editor
I found a solution:
afterChange: (changes, source) => {
if (source == 'edit') {
changes.forEach(([row, prop, oldValue, newValue]) => {
hot.getPlugin('filters').filter();
// trigger rendering
});
}
1 Like