dustin@679: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
dustin@679:  * Software engineering by Intevation GmbH
dustin@679:  *
dustin@679:  * This file is Free Software under the GNU GPL (v>=3)
dustin@679:  * and comes with ABSOLUTELY NO WARRANTY! Check out
dustin@679:  * the documentation coming with IMIS-Labordaten-Application for details.
dustin@679:  */
dustin@679: 
dustin@679: 
dustin@679: // The Date returned by EXT-JSON serializer has to contain the timezone identifier
dustin@679: 
dustin@679: Ext.define("Lada.override.JSON", {
dustin@679:     override: 'Ext.JSON',
dustin@679:     encodeDate: function(o){
dustin@679:         return '"' + Ext.Date.format(o, 'c') + '"';
dustin@679:     }
dustin@679: });
dustin@679: