Function
Mixin for widgets that are children of a container widget
// make a basic custom widget that knows about it's parents dojo.declare("my.customClass",[dijit._Widget,dijit._Contained],{});
Function
Returns the parent widget of this widget, assuming the parent specifies isContainer
Function
Either "next" or "previous"
Returns next or previous sibling
dijit._Widget
Function
Returns null if this is the first child of the parent, otherwise returns the next element sibling to the "left".
dijit._Widget
Function
Returns null if this is the last child of the parent, otherwise returns the next element sibling to the "right".
dijit._Widget
Function
Returns the index of this widget within its container parent. It returns -1 if the parent does not exist, or if the parent is not a dijit._Container
int
Object