Constructordijit._Contained

dojo.require("dijit._Container");
defined in dijit/_Container.js

Mixin for widgets that are children of a container widget

Usage

function ()

Examples

Example 1

// make a basic custom widget that knows about it's parents
dojo.declare("my.customClass",[dijit._Widget,dijit._Contained],{});

FunctionsBack to top

Returns null if this is the last child of the parent, otherwise returns the next element sibling to the "right".
Returns the parent widget of this widget, assuming the parent implements dijit._Container
Returns null if this is the first child of the parent, otherwise returns the next element sibling to the "left".
Function_getSibling(which)