source: Dev/trunk/src/client/qed-client/pages/templates/surveys.html @ 529

Last change on this file since 529 was 529, checked in by hendrikvanantwerpen, 11 years ago
  • Added grey icons for better highlighting, synced block and large buttons.
  • Introduced extra color for text, now disabled/inactive/hovered -> it's not very clear though.
  • Added confirmation on irrevertable actions.
  • Added support for query string in our new request implementation.
File size: 2.2 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">Surveys</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="Drafts"
16             data-dojo-attach-point="draftsTab">
17            <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region: 'center'" data-dojo-attach-point="draftsContainer">
18            </div>
19            <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region: 'bottom'" style="height: 40px;">
20            </div>
21        </div>
22
23        <div data-dojo-type="dijit/layout/BorderContainer"
24             title="Published"
25             data-dojo-attach-point="publishedTab">
26            <div data-dojo-type="dijit/layout/ContentPane"
27                 data-dojo-props="region: 'center'"
28                 data-dojo-attach-point="publishedContainer">
29            </div>
30            <div data-dojo-type="dijit/layout/ContentPane"
31                 data-dojo-props="region: 'bottom'"
32                 style="height: 40px;">
33            </div>
34        </div>
35
36        <div data-dojo-type="dijit/layout/BorderContainer"
37             title="Runs"
38             data-dojo-attach-point="runsTab">
39            <div data-dojo-type="dijit/layout/ContentPane"
40                 data-dojo-props="region: 'center'"
41                 data-dojo-attach-point="runsContainer">
42            </div>
43            <div data-dojo-type="dijit/layout/ContentPane"
44                 data-dojo-props="region: 'bottom'"
45                 style="height: 40px;">
46            </div>
47        </div>
48    </div>
49
50    <div data-dojo-type="dijit/layout/ContentPane"
51         data-dojo-props="region: 'bottom'"
52         style="height: 40px;">
53        <button data-dojo-type="dijit/form/Button"
54                class="blue"
55                data-dojo-props="baseClass: 'rftLargeButton', iconClass: 'rftIcon rftIconNew'"
56                data-dojo-attach-event="onClick:_onNewSurvey">New survey</button>
57    </div>
58
59</div>
Note: See TracBrowser for help on using the repository browser.