source: Dev/trunk/client/qed/model/widgets/questions/HeaderWidget.js @ 441

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

Big cleanup of the question content.

  • Replaced old list implementations with a new one that behaves like a form widget.
  • All question content is now in separate widgets, not in the factory itself.
  • Added form and widget validation for question editing.
File size: 312 bytes
Line 
1define([
2    "dijit/_TemplatedMixin",
3    "dijit/_WidgetBase",
4    "dojo/_base/declare",
5    "dojo/text!./templates/HeaderWidget.html"
6], function(_TemplatedMixin, _WidgetBase, declare, template) {
7    return declare([_WidgetBase,_TemplatedMixin],{
8        templateString: template,
9        text: ''
10    });
11});
Note: See TracBrowser for help on using the repository browser.