Documentation

getParentView

returns the parent object of the calling element. Used while integrating with Webix Touch

object getParentView();

Returns

objectthe parent object

See also

Example

webix.ui({ 
  rows:[
    { id:"myview", template:"some" }
  ]
});
 
var layout = $$('myview').getParentView();

Back to top