Ignore:
Timestamp:
03/27/14 14:44:36 (11 years ago)
Author:
hendrikvanantwerpen
Message:
  • Return to using truly ISO formatted dates, including milliseconds.
  • Also set constraint on surveyrun dates when value is initially set.
  • Separate runs & results from surveys and questions.
  • Moved date & email format to schema itself.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/client/qed-client/model/widgets/SurveyRunWidget.js

    r513 r531  
    1111            var endDateBox = this.endDateBox;
    1212            this.own(this.startDateBox.on('change', function(value){
    13                 endDateBox.constraints.min  = value;
     13                endDateBox.constraints.min = value;
    1414            }));
    1515        },
     
    2424                value.respondentCanDeleteOwnResponse ? ["on"] : [];
    2525            this.inherited(arguments);
     26            this.endDateBox.constraints.min =
     27                this.startDateBox.get('value');
    2628        }
    2729    });
Note: See TracChangeset for help on using the changeset viewer.