source: Dev/trunk/src/client/qed-client/pages/templates/response.html @ 457

Last change on this file since 457 was 457, checked in by hendrikvanantwerpen, 12 years ago

Improve SurveyRun? form and drop Fieldsets as widgets.

  • Improved console message on Page change fail.
  • Renamed some widgets, dropped having Fieldset widgets.
  • Put constraint that survey run start date cannot be before end date.
  • Link to survey from survey summary,
File size: 1.3 KB
Line 
1<div class="blue">
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" data-dojo-attach-point="titleNode">Survey</span>
7        </h2>
8    </div>
9   
10    <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center'" data-dojo-attach-point="content">
11        <form data-dojo-type="dijit/form/Form" data-dojo-attach-point="responseForm"
12              data-dojo-attach-event="onSubmit:_ignoreEvent" style="overflow: auto">
13            <div data-dojo-type="../model/widgets/SurveyRenderWidget" data-dojo-attach-point="surveyWidget"></div>
14        </form>
15    </div>
16   
17
18    <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'bottom'">
19        <button data-dojo-type="dijit/form/Button"
20                type="submit"
21                data-dojo-attach-point="submitButton"
22                data-dojo-attach-event="onClick:_onSubmit">
23            Submit</button>
24        <button data-dojo-type="dijit/form/Button"
25                type="button"
26                data-dojo-attach-point="continueButton"
27                data-dojo-attach-event="onClick:_onContinueLater">
28            Continue later</button>
29    </div>
30
31</div>
Note: See TracBrowser for help on using the repository browser.