I am in the US where we expect to see dates in mm/dd/yy format. The doorwindow widget displays the update time in dd/mm/yy format. It looks like this is due to the following line in HG.WebApp.Utility.FormatDate (homegenie.webapp.js):
var dt = $.datepicker.formatDate('D, dd/mm/yy', date);
If I change this line to
var dt = date.toLocaleDateString();
then the date is displayed in the expected format. Is this a change that could/should be incorporated into the code base?