Last change
on this file since 381 was
288,
checked in by hendrikvanantwerpen, 13 years ago
|
[Client] MultipleChoiceWidget? for editing multiple choice questions
[Client] Move templates to separate directories.
[Client] Created QuestionWidget? to edit complete questions.
[Client] Fixed startup race condition where parsing was started before all classes were loaded.
|
File size:
443 bytes
|
Line | |
---|
1 | require(['dojo/_base/declare','dojo/_base/query','dijit/registry','dojox/widget/TitleGroup'], |
---|
2 | function(declare,query,registry,TitleGroup){ |
---|
3 | return declare('rft.ui.TitleGroup',[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.