uid¶
webix.
uid
([see official doc])¶webix.uid helper.
Please look into the linked official documentation.
Referenced by¶
- helpers
event()
,html
,jsonp()
,faye
,local
,template()
,ui()
.- components
DataCollection()
,DataRecord()
,DataValue()
,HtmlMap()
.- mixins
json()
,DataMove()
,DataStore()
,EventSystem()
,MapCollection()
,TreeDataMove()
,TreeTablePaste()
,UIManager()
,UploadDriver()
.- views
checkbox()
,counter()
,datatable()
,htmlform()
,property()
,radio()
,segmented()
,select()
,slider()
,tabview()
,text()
,textarea()
,uploader()
,video()
,window()
.
External references¶
Code¶
1 2 3 4 5 6 | webix.uid = function(){
if (!this._seed) this._seed=(new Date()).valueOf(); //init seed with timestemp
this._seed++;
return this._seed;
};
//resolve ID as html object
|