Last change
on this file since 435 was
417,
checked in by hendrikvanantwerpen, 12 years ago
|
Put all model dependent code in one place. More separation of general and domain code.
|
File size:
423 bytes
|
Line | |
---|
1 | require(['dojo/_base/declare','dojo/_base/query','dijit/registry','dojox/widget/TitleGroup'], |
---|
2 | function(declare,query,registry,TitleGroup){ |
---|
3 | return declare([TitleGroup],{ |
---|
4 | getChildren: function() { |
---|
5 | return query("> .dijitTitlePane", this.domNode) |
---|
6 | .map(function(node){ |
---|
7 | return registry.byNode(node); |
---|
8 | }); |
---|
9 | } |
---|
10 | }); |
---|
11 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.