Hi,
I have previously used a datapicker component to store user entered date as a UTC timestamp using javascript for returning the value as a UTC as follows:
var tstamp = Date.now();
return tstamp;
I would now like to do the reverse, basically take the stored timestamp (integer) from the database and convert it and set the date picker UI component to that date.
Any suggestions on this?