Documentation

getParentView

returns the parent view of the component

object getParentView();

Returns

objectthe parent object

See also

Example

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

Back to top