toNode¶
webix.toNode(node)¶webix.toNode helper.
Please look into the linked official documentation.
Referenced by¶
- helpers
animate(),editors,event(),html,toPNG(),ui(),views().- components
Canvas().- mixins
ContextHelper(),html(),htmltable(),DragControl(),Movable().- views
baseview(),htmlform(),resizearea(),suggest(),template(),uploader(),vscroll(),window().
External references¶
Code¶
1 2 3 4 5 | webix.toNode = function(node){
if (typeof node == "string") return document.getElementById(node);
return node;
};
//adds extra methods for the array
|