blob: b67313c29b44f8b68f05913b2d464e663d66fc5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//>>built
define("dojox/mvc/Group", ["dojo/_base/declare", "dijit/_WidgetBase"], function(declare, WidgetBase){
/*=====
WidgetBase = dijit._WidgetBase;
declare = dojo.declare;
=====*/
return declare("dojox.mvc.Group", [WidgetBase], {
// summary:
// A simple model-bound container widget with single-node binding to a data model.
//
// description:
// A group is usually bound to an intermediate dojo.Stateful node in the data model.
// Child dijits or custom view components inside a group inherit their parent
// data binding context from it.
});
});
|