This issue duplicates another issue.
  1. #1
    Ext JS Premium Member
    Join Date
    Jan 2011
    Posts
    6
    Vote Rating
    0
    by_lexus is on a distinguished road

      0  

    Default Ext.data.Writer.writeDate: causes errors on null date objects

    Ext.data.Writer.writeDate: causes errors on null date objects


    Hi,

    We try to store a Record (instance of Ext.data.Model) which contains a date field using a JSON Writer.
    We found 2 problems related to the writeDate function in Writer.js:

    - If the date field's value is null (no date set), Writer.writeDate causes a 'NullPointerException', because there is no null-check.
    - To determine the date field's format, field.dateFormat is used, but it seems that this option is not present: Instead, the field object's config property has to be queried: field.config.dateFormat

    Our workaround:

    Code:
    // Writer.js, function writeDate:
    writeDate: function(field, date) {
            var dateFormat = field.dateFormat || (field.config.dateFormat || 'timestamp');
            if (!date) {
                return null;
            }
            switch (dateFormat) {
                case 'timestamp':
                    return date.getTime()/1000;
                case 'time':
                    return date.getTime();
                default:
                    return Ext.Date.format(date, dateFormat);
            }
        }
    We're using Sencha Touch Version 2.0.1.1.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,684
    Vote Rating
    435
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Believe this coveres the same thing: http://www.sencha.com/forum/showthread.php?241165
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

Tags for this Thread