ui.each¶
webix.ui.
each
(parent, logic, master, include)¶webix.ui.each helper.
Please look into the linked official documentation.
Referenced by¶
- views
accordion()
,baselayout()
,carousel()
,multiview()
,toolbar()
.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 | webix.ui.each = function(parent, logic, master, include){
if (parent){
var children = include ? [parent] : parent.getChildViews();
for (var i = 0; i < children.length; i++){
if (logic.call((master || webix), children[i]) !== false)
webix.ui.each(children[i], logic, master);
}
}
};
webix.event(window, "resize", webix.ui.resize);
|