stores text from the search input
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
});
The reactive property stores text from the search input and gets updated when a user types into it.