Ignore:
Timestamp:
12/09/12 16:49:22 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Put all model dependent code in one place. More separation of general and domain code.

Location:
Dev/branches/rest-dojo-ui/client/rft/model
Files:
1 added
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/model/widgets/SurveyFieldset.js

    r415 r417  
    11define([
    22    'dojo/_base/declare',
    3     'rft/ui/generic/TemplatedForm',
    4     'dojo/text!./templates/SurveyForm.html'
    5 ],function(declare,TemplatedForm,template){
    6     return declare([TemplatedForm],{
     3    'dijit/_Container',
     4    'dijit/_WidgetBase',
     5    'dijit/_TemplatedMixin',
     6    'dijit/_WidgetsInTemplateMixin',
     7    'dojo/text!./templates/SurveyFieldset.html'
     8],function(declare,_Container,_WidgetBase,_TemplatedMixin,_WidgetsInTemplateMixin,template){
     9    return declare([_WidgetBase,_TemplatedMixin,_WidgetsInTemplateMixin,_Container],{
    710        templateString: template,
    8         baseClass: "rftSurveyForm"
     11        baseClass: "rftSurveyFieldset"
    912    });
    1013});
Note: See TracChangeset for help on using the changeset viewer.