summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/mvc/Group.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/mvc/Group.js')
-rw-r--r--js/dojo/dojox/mvc/Group.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/dojo/dojox/mvc/Group.js b/js/dojo/dojox/mvc/Group.js
new file mode 100644
index 0000000..b67313c
--- /dev/null
+++ b/js/dojo/dojox/mvc/Group.js
@@ -0,0 +1,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.
+ });
+});