fires when the value changes in the widget
webix.ui({
view: "query",
fields: [ /*fields for filtering*/ ],
value: { /*filtering rules and fields combinations*/ },
on: {
onChange() {
const filter = this.getFilterFunction();
// data-widget to filter data in
$$("data-widget").filter(filter);
}
}
});