Hi,
I’m able to get the condition stack via afterInit hook, and
I have tried to apply the filters condition stack on load of the handsontable,
but the filter conditions not applied, I have tried below code, and please find the jsfiddle link which i have tried.
dropdownMenu: [‘filter_by_value’, ‘filter_action_bar’],
filters: true,
beforeInit(){
var hot = this.getInstance();
console.log(filterCondition);
const filtersPlugin = hot.getPlugin(‘filters’);
filtersPlugin.addCondition(1, ‘by_value’, [true], ‘conjunction’);
filtersPlugin.filter();
},
https://jsfiddle.net/prabuk/vbuw7zyd/4/
Kindly help how can we achieve this.,