triggers global filtering for custom inputs
on:{
onChange:function(){
const filter = this.queryView("filter", "parent");
filter.applyFilter();
}
}
The method is used to ensure that custom filtering is applied.
Back to top