source: Dev/branches/rest-dojo-ui/client/rft/pages/survey.html @ 357

Last change on this file since 357 was 355, checked in by tjcschipper, 13 years ago
  • surveyEditor more or less works! Only needed change is addition of "topic" property in question objects (database-side), and the change from "category"(string) to "categories"(string[]).
  • surveyEditor still needs removal function and infofunction to be written properly!
  • Added all files belonging to SurveyAdvanced?. Most do not work properly yet, but at least there will not be a 404 page when you click btnPreview on survey.html.
File size: 1.8 KB
Line 
1<div data-dojo-type="rft.pages.survey" id="survey" class="blue">
2    <div data-dojo-type="dijit.layout.BorderContainer" data-dojo-props="region:'center'" style="height: 500px;">
3
4        <div data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region:'top'">
5            <h2>
6                <span class="rftIcon rftIconSurvey"></span>
7                <span class="headerText" data-dojo-attach-point="header">Survey A [editing]</span>
8            </h2>
9        </div>
10       
11        <div data-dojo-type="dijit.layout.BorderContainer" data-dojo-props="region:'center'">
12            <div id="tabList" data-dojo-type="dijit.layout.TabContainer" class="blue" data-dojo-props="tabPosition:'left-h',region:'center'">
13                <!-- tabs go here -->
14            </div>
15        </div>
16       
17        <div data-dojo-type="dijit.layout.BorderContainer" data-dojo-props="region:'right'" style="width: 300px">
18            <div id="SurveyListViewNode" class="rftSurveyListView">
19            </div>
20
21            <div data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region: 'bottom'">
22                <button id="btnProperties" data-dojo-type="dijit.form.Button" data-dojo-props="baseClass: 'rftLargeButton', iconClass: 'rftIcon rftIconProperties'">Properties</button>
23                <button id="btnSave" data-dojo-type="dijit.form.Button" data-dojo-props="baseClass: 'rftLargeButton', iconClass: 'rftIcon rftIconAccept'">Save Changes</button>
24                <button id="btnDiscard" data-dojo-type="dijit.form.Button" data-dojo-props="baseClass: 'rftLargeButton', iconClass: 'rftIcon rftIconCancel'">Discard changes</button>
25                <button id="btnPreview" data-dojo-type="dijit.form.Button" data-dojo-props="baseClass: 'rftLargeButton', iconClass: 'rftIcon rftIconPreview'">Preview</button>
26            </div>
27        </div>
28    </div>
29</div>
Note: See TracBrowser for help on using the repository browser.