Refiltering after cell editor

Tags: #<Tag:0x00007f1365b9c240>

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’.

I found a solution:

afterChange: (changes, source) => {
            if (source == 'edit') {
                changes.forEach(([row, prop, oldValue, newValue]) => {
                    hot.getPlugin('filters').filter();
                    // trigger rendering
});

}

1 Like