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/pages/_ObjectPage.js

    r491 r492  
    1111        classStore: null,
    1212        constructor: function() {
    13             if ( !this.classStore ) { throw new Error("Subclasses must specify a classStore."); }
     13            if ( !this.classStore ) {
     14                throw new Error("Subclasses must specify a classStore.");
     15            }
     16        },
     17        startup: function() {
     18            if ( this._started ) { return; }
     19            this.inherited(arguments);
     20            this.markClean();
    1421        },
    1522        _load: function() {
Note: See TracChangeset for help on using the changeset viewer.