Group.js 569 B

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