onChange

fires when the value changes in the widget

void onChange();

Example

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);
    }
  }
});

Related samples

See also
Back to top