I would like to have dates in "dd/MM/yyyy" format so:
I changed the EditMask and the DisplayFormat propertiesof a datetime view column in the Model.DesignedDiffs.xafml, as you can see in the attached file.
In Explorer it seem fine but in chrome it doesn't look good, The format is ' MM/dd/yyyy'.
I also tried to add it to the ORMDataModelCode:
C#DateTime fStartDate;
[Persistent(@"Start Date")]
<bold> [Custom("DisplayFormat", "dd/MM/yyyy")]
[Custom("EditMask", "dd/MM/yyyy")]</bold>
public DateTime StartDate
{
get { return fStartDate; }
set { SetPropertyValue<DateTime>("StartDate", ref fStartDate, value); }
}
But it doesn't correct the issue in chrome.