Last change
on this file since 420 was
420,
checked in by hendrikvanantwerpen, 12 years ago
|
We can store answers for surveys now!
Introduces SurveyRun?, which can be edited. Workflow not quite clear yet. A
running survey can be accessed to leave a response. When the response
has an ID, it is loaded (used for closed surveys and continuations). A
researcher cannot create responses yet. He should also be able to add
comments to responses (that he creates).
Introduced caching of store requests.
Factored out path matching and formatting.
Put object creation in separate classes, to localize model/storage
dependency. Not consistent at the moment.
|
File size:
1.2 KB
|
Line | |
---|
1 | define([ |
---|
2 | // dijit & rft widgets used declaratively in templates |
---|
3 | 'dijit/Dialog', |
---|
4 | 'dijit/DropDownMenu', |
---|
5 | 'dijit/InlineEditBox', |
---|
6 | 'dijit/MenuBar', |
---|
7 | 'dijit/MenuBarItem', |
---|
8 | 'dijit/PopupMenuBarItem', |
---|
9 | 'dijit/TitlePane', |
---|
10 | 'dijit/layout/AccordionContainer', |
---|
11 | 'dijit/layout/BorderContainer', |
---|
12 | 'dijit/layout/ContentPane', |
---|
13 | 'dijit/layout/TabContainer', |
---|
14 | 'dijit/form/Button', |
---|
15 | 'dijit/form/ComboBox', |
---|
16 | 'dijit/form/DateTextBox', |
---|
17 | 'dijit/form/Form', |
---|
18 | 'dijit/form/NumberSpinner', |
---|
19 | 'dijit/form/Select', |
---|
20 | 'dijit/form/SimpleTextarea', |
---|
21 | 'dijit/form/Textarea', |
---|
22 | 'dijit/form/TextBox', |
---|
23 | 'dijit/form/TimeTextBox', |
---|
24 | |
---|
25 | 'dojox/grid/DataGrid', |
---|
26 | |
---|
27 | 'qed/app/Notifications', |
---|
28 | |
---|
29 | 'qed/model/widgets/AccountListView', |
---|
30 | 'qed/model/widgets/QuestionWidget', |
---|
31 | 'qed/model/widgets/SurveyFieldset', |
---|
32 | 'qed/model/widgets/SurveyRunFieldset', |
---|
33 | 'qed/model/widgets/SurveySummary', |
---|
34 | 'qed/model/widgets/SurveyWidget', |
---|
35 | |
---|
36 | 'qed/ui/MainMenu', |
---|
37 | 'qed/ui/MenuBarLink', |
---|
38 | 'qed/ui/MenuLink', |
---|
39 | |
---|
40 | 'qed/widgets/LineWithActionsWidget', |
---|
41 | 'qed/widgets/ObjectBox', |
---|
42 | 'qed/widgets/Selector', |
---|
43 | 'qed/widgets/TitleGroup', |
---|
44 | 'qed/widgets/list/List', |
---|
45 | 'qed/widgets/list/OrderedList' |
---|
46 | ],function(){}); |
---|
Note: See
TracBrowser
for help on using the repository browser.