source: Dev/trunk/src/client/qed-client/model/widgets/questions/templates/ScaleInputConfigRowWidget.html

Last change on this file was 525, checked in by hendrikvanantwerpen, 11 years ago
  • Allow empty subcodes.
  • Use HTTPResult exclusively on server (no more q).
  • Set readonly & disabled on ourselves as well in _ComplexValueMixin
  • Split server into several modules.
  • Check codes on the variable level, not question level.
  • We can add modules in design documents now.
File size: 1.3 KB
Line 
1<tr>
2  <th class="subcode">
3    <div data-dojo-type="dijit/form/ValidationTextBox"
4         data-dojo-props="placeholder: 'Subcode'"
5         name="subcode"></div>
6  </th>
7  <th class="item">
8    <div name="text"
9         required="required"
10         data-dojo-type="dijit/form/ValidationTextBox"
11         data-dojo-props="placeholder: 'Item/Question text'"></div>
12  </th>
13  <th class="minLabel">
14    <div name="minLabel"
15         required="required"
16         data-dojo-type="dijit/form/TextBox"
17         data-dojo-props="placeholder: 'Minimum label'"></div>
18  </th>
19  <td>
20    <div disabled="disabled" class="min"
21         data-dojo-type="dijit/form/RadioButton"></div>
22  </td>
23  <td>...</td>
24  <td>
25    <div disabled="disabled" class="max"
26         data-dojo-type="dijit/form/RadioButton"></div>
27  </td>
28  <th class="maxLabel">
29    <div name="maxLabel"
30         required="required"
31         data-dojo-type="dijit/form/TextBox"
32         data-dojo-props="placeholder: 'Maximum label'"></div>
33  </th>
34  <td class="na">
35    <div disabled="disabled"
36         data-dojo-attach-point="naRadioButton"
37         data-dojo-type="dijit/form/RadioButton"></div>
38  </td>
39  <th>
40    <button data-dojo-type="dijit/form/Button"
41            data-dojo-attach-event="onClick:onDestroy">X</button>
42  </th>
43</tr>
Note: See TracBrowser for help on using the repository browser.