I upgraded smartclient from v8.2 to v8.3. I see the date fields marshalling has been changed. In 8.2, the date fields were marshalling as
In 8.3 it is simply being marshalled as
Can you please confirm the change? Also is there anyway I can force 8.2 type of marshalling for date fields?
As I have some custom javascript code built on 8.2 marhsalling, the code is not working as the value does not have lots of properties and resulting in javascript error.
Appreciate your response on this. Thanks.
Code:
value:{ firstDayOfWeek:1, gregorianChange:new Date(-12219292800000), lenient:true, minimalDaysInFirstWeek:1, time:new Date(1393891200000), timeInMillis:1393891200000, timeZone: { DSTSavings:0,ID:"", displayName:"GMT+00:00",rawOffset:0} } }
Code:
value:new Date(1393891200000)
As I have some custom javascript code built on 8.2 marhsalling, the code is not working as the value does not have lots of properties and resulting in javascript error.
Appreciate your response on this. Thanks.
Comment