Hybrid View
-
13 Nov 2012 12:25 PM #1
Answered: Is it necessary to encode dates for ajax posts to .net handlers?
Answered: Is it necessary to encode dates for ajax posts to .net handlers?
In essence i am having to override the save method of a model, because when using the proxy (via save()), dates are sent in the format MS enjoys when serializing into JSON. (i.e. ticks since 1970), due to me specifying the field as an MS date.
But, when posting back, they decided they don't particularly like dates in this format, so the date doesn't get read into my view, it needs formatting first into y-m-d format.
The only way round it, is to encode the json and do a bog standard ajax call (having overridden the encoding for dates in my app):
andCode:Ext.JSON.encodeDate = function (d) { return Ext.Date.format(d, '"Y-m-d"'); };
Not ideal really...Code:saveRecord: function () { var me = this; var data = me.getData(false); Ext.Ajax.request({ scope: me, url: "/wex", method: "POST", jsonData: Ext.encode(data) }); }
-
Best Answer Posted by vietits
Do you mean that the date formats for the reading and updating will be different? In that case, you can use field serialize.
Code:fields: [{ name: 'fieldName', type: 'date', dateFormat: 'MS', // format for reading serialize: function(value){ return Ext.Date.format(value, 'Y-m-d'); } },{ ... }]
-
13 Nov 2012 6:50 PM #2
Do you mean that the date formats for the reading and updating will be different? In that case, you can use field serialize.
Code:fields: [{ name: 'fieldName', type: 'date', dateFormat: 'MS', // format for reading serialize: function(value){ return Ext.Date.format(value, 'Y-m-d'); } },{ ... }]
-
14 Nov 2012 12:39 AM #3
Ah just what I was looking for.
Thanks


Reply With Quote