I’d like to know if there is any sort of equivalent to ExtJS’s Ext.ComponentQuery.query(querystring), which let you query the entire application for components that matched your querystring. This would be very useful to me because I’m going to have components that are created and duplicated in runtime, and it would be bothersome to have to generate unique ids for programmatically created components.
Something similar is possible with webix.ui.each
webix.ui.each(root, function(view){
//do something for all lists
if (view.name == "list") do_something(view);
});