source: Dev/branches/rest-dojo-ui/client/rft/pages/viewSurvey.html @ 400

Last change on this file since 400 was 399, checked in by hendrikvanantwerpen, 13 years ago

Added survey viewer page.

Added view.html page to view surveys. Widgets from the questions are
displayed, no answers are saved yet.

The content module is split for index.html and view.html, so viewers
cannot navigate to other pages. Widgets to pre-load are now seperated
in stddeps.js module and shared between run.js & view.js.

File size: 1.1 KB
Line 
1<div data-dojo-type="rft.pages.viewSurvey" 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-rft-attach-point="titleNode">Survey</span>
8            </h2>
9        </div>
10       
11        <div data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region:'center'" data-rft-attach-point="questionsPane">
12        </div>
13       
14        <div data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region:'bottom'">
15            <button data-dojo-type="dijit.form.Button"
16                    type="submit"
17                    data-rft-attach-event="onClick:_onSubmit">
18                Submit</button>
19            <button data-dojo-type="dijit.form.Button"
20                    type="button"
21                    data-rft-attach-event="onClick:_onCancel">
22                Cancel</button>
23        </div>
24
25    </div>
26</div>
Note: See TracBrowser for help on using the repository browser.