source: Dev/trunk/src/client/qed-client/model/widgets/questions/TextInputConfigWidget.js

Last change on this file was 510, checked in by hendrikvanantwerpen, 11 years ago
  • Factored out general object mapping and iteration.
  • Split widgets for multiplechoice and singlechoice.
  • Restored readOnly/disabled setting for QuestionEditorPreviewItem? on innerWidget (since view innerWidget is not a form anymore, we cannot just set it on that, we iterate over all form children now).
File size: 317 bytes
Line 
1define([
2    "../../../widgets/_ComplexValueWidget",
3    "dojo/_base/declare",
4    "dojo/text!./templates/TextInputConfigWidget.html"
5], function(_ComplexValueWidget, declare, template) {
6    return declare([_ComplexValueWidget],{
7        baseClass: 'qedTextInputConfig',
8        templateString: template
9    });
10});
Note: See TracBrowser for help on using the repository browser.