search

stores text from the search input

string search;

Example

webix.ui({
    view: "docmanager",
    url: "//localhost:3200/",
    on: {
      onInit: function(app) {
      // logs text value from the input
      app.getState().$observe("search", text => console.log(text));
    },
    // other properties
  }

Details

The reactive property stores text from the search input and gets updated when a user types into it.

See also
Back to top