Hi,
When you retrieve CRM date time values using oData Service from CRM, you will get the date in different format as below which we cannot set to Date field.
Here is the way to type cast it.
vDate = vDate.replace(")/", "");
var dateValue = new Date(parseInt(vDate, 10));
Hope this helps.
--
Happy Coding
Gopinath
When you retrieve CRM date time values using oData Service from CRM, you will get the date in different format as below which we cannot set to Date field.
Here is the way to type cast it.
var vDate = jsonResult[0].new_date;
vDate
= vDate.replace("/Date(", "");vDate = vDate.replace(")/", "");
var dateValue = new Date(parseInt(vDate, 10));
Hope this helps.
--
Happy Coding
Gopinath
No comments:
Post a Comment