Ignore:
Timestamp:
03/09/14 14:23:42 (11 years ago)
Author:
hendrikvanantwerpen
Message:
  • Enable/disable buttons on content change.
  • One place to do date formatting, because it was going wrong again.
  • Serialize questions in survey properly.
  • _ComplexValueMixin consumes submit events, but does trigger outer forms if present.
  • Trigger dialog show/hide for login only after previous effect is finished.
  • Check that documents are actually valid, not just that validator returned a result.
  • Validate email and timestamp formats.
  • Prepared for live runs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/client/qed-client/model/classes/_Class.js

    r490 r492  
    22    "./_View",
    33    "dojo/_base/declare",
    4     "dojo/_base/lang"
    5 ], function(_View, declare, lang) {
     4    "dojo/_base/lang",
     5    "dojo/date/stamp"
     6], function(_View, declare, lang, stamp) {
    67
    78    var _Class = declare([_View],{
     
    5657                                             idOrObj :
    5758                                             this.getId(idOrObj));
     59        },
     60        _formatDate: function(date) {
     61            return stamp.toISOString(date,{zulu:true,milliseconds:false});
    5862        }
    5963    });
Note: See TracChangeset for help on using the changeset viewer.