toArray¶
webix.
toArray
(array)¶webix.toArray helper.
Please look into the linked official documentation.
References¶
- helpers
extend()
.- mixins
PowerArray()
.
Referenced by¶
- helpers
_xhr_aborted()
,destructors()
,_popups()
.- components
DataLoader()
.- mixins
DataStore()
,DragControl()
,EventSystem()
,GroupStore()
,SelectionModel()
,Touch()
,TreeStore()
.- views
grouplist()
,unitlist()
.
External references¶
Code¶
1 2 3 4 | webix.toArray = function(array){
return webix.extend((array||[]),webix.PowerArray, true);
};
//resolve function name
|