Hello, I am also having this issue, in preview in chrome the date is shown correctly but on IOS/Safari/Firefox i get a NAN/NAN/NAN
I used the code form the link ask the last person read.
what am i missing ?
Hello,
Could you provide a mapping to which you add this code?
Please replace your code with the following one:
pre
code
var arr = value.split(/[- :]/);
var date = new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], arr[5]);
return jQuery.datepicker.formatDate("dd/mm/yy", date);
/code
/pre
that fixed the issue. Thank you