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

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

Lots of small fixes.

Make it possible to read survey answers (when a question code is
provided), it is now displayed in place of the survey. More to come.

Some whitespace fixes.

File size: 1.4 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            <form data-dojo-type="dijit.form.Form" data-rft-attach-point="questionsForm"
13                  data-rft-attach-event="onSubmit:_onSubmit"
14                  style="overflow: auto">
15                <div data-rft-attach-point="questionsAnchor"></div>
16            </form>
17        </div>
18       
19        <div data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region:'bottom'">
20            <button data-dojo-type="dijit.form.Button"
21                    type="submit"
22                    data-rft-attach-event="onClick:_onSubmit">
23                Submit</button>
24            <button data-dojo-type="dijit.form.Button"
25                    type="button"
26                    data-rft-attach-event="onClick:_onCancel">
27                Cancel</button>
28        </div>
29
30    </div>
31</div>
Note: See TracBrowser for help on using the repository browser.