_event¶
webix.
_event
(a, b, c, d)¶webix._event helper.
Please look into the linked official documentation.
Referenced by¶
- helpers
editors
,combo
,toPDF()
,_popups()
,datafilter
,dateFilter
.- mixins
ActiveContent()
,DragControl()
,EditAbility()
,HTMLOptions()
,Modality()
,MouseEvents()
,Scrollable()
,SelectionModel()
,Touch()
,UploadDriver()
,VirtualRenderStack()
.- views
calendar()
,colorboard()
,counter()
,resizearea()
,resizer()
,slider()
,suggest()
,text()
,uploader()
,vscroll()
,window()
.
External references¶
Code¶
1 2 3 4 5 6 | webix._event = function(a,b,c,d){
d = d || {};
d.inner = true;
webix.event(a,b,c,d);
}
//attach event to the DOM element
|