returns the parent object of the calling element. Used while integrating with Webix Touch
object | the parent object |
webix.ui({
rows:[
{ id:"myview", template:"some" }
]
});
var layout = $$('myview').getParentView();
Back to top