search

stores text from the search input

string search;

Example

webix.ui({
  view: "filemanager",
  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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.