source: Dev/trunk/src/client/qed-client/pages/templates/surveyRuns.html @ 531

Last change on this file since 531 was 531, checked in by hendrikvanantwerpen, 11 years ago
  • Return to using truly ISO formatted dates, including milliseconds.
  • Also set constraint on surveyrun dates when value is initially set.
  • Separate runs & results from surveys and questions.
  • Moved date & email format to schema itself.
File size: 1.9 KB
Line 
1<div>
2
3    <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'">
4        <h2>
5            <span class="rftIcon rftIconSurvey"></span>
6            <span class="headerText">Survey Results</span>
7        </h2>
8    </div>
9
10    <div data-dojo-attach-point="tabContainer"
11         data-dojo-type="dijit/layout/TabContainer"
12         class="blue" data-dojo-props="tabPosition:'left-h',region:'center'">
13
14        <div data-dojo-type="dijit/layout/BorderContainer"
15             title="Current"
16             data-dojo-attach-point="currentTab">
17            <div data-dojo-type="dijit/layout/ContentPane"
18                 data-dojo-props="region: 'center'"
19                 data-dojo-attach-point="currentContainer">
20            </div>
21            <div data-dojo-type="dijit/layout/ContentPane"
22                 data-dojo-props="region: 'bottom'"
23                 style="height: 40px;">
24            </div>
25        </div>
26
27        <div data-dojo-type="dijit/layout/BorderContainer"
28             title="Future"
29             data-dojo-attach-point="futureTab">
30            <div data-dojo-type="dijit/layout/ContentPane"
31                 data-dojo-props="region: 'center'"
32                 data-dojo-attach-point="futureContainer">
33            </div>
34            <div data-dojo-type="dijit/layout/ContentPane"
35                 data-dojo-props="region: 'bottom'"
36                 style="height: 40px;">
37            </div>
38        </div>
39
40        <div data-dojo-type="dijit/layout/BorderContainer"
41             title="Past"
42             data-dojo-attach-point="pastTab">
43            <div data-dojo-type="dijit/layout/ContentPane"
44                 data-dojo-props="region: 'center'"
45                 data-dojo-attach-point="pastContainer">
46            </div>
47            <div data-dojo-type="dijit/layout/ContentPane"
48                 data-dojo-props="region: 'bottom'"
49                 style="height: 40px;">
50            </div>
51        </div>
52
53    </div>
54
55</div>
Note: See TracBrowser for help on using the repository browser.