-
28 Nov 2012 1:33 AM #1
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:
We're using Sencha Touch Version 2.0.1.1.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); } }
-
28 Nov 2012 11:30 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,684
- Vote Rating
- 435
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.
This issue duplicates another issue.


Reply With Quote