I’ working with vanilla JS and for some cols I have filters. Works fne.
After updating some stuff by ajax I tried:
$.ajax({
url: url,
dataType: 'json',
success: function (res) {
hot.loadData(res);
hot.getPlugin('Filters').filter();
},
});
But I see the unfiltered version of table. Whats going wrong?