I've integrated ui-grid in my project to showcase data along with dates.
An example of a date fetched from an ajax call would be:
DateReview='06/25/2016'
The current format being mm/dd/yyyy for display purposes.
The column definition in the ui-grid is as follows:
name: 'Start date', field: 'DateReview', cellTooltip: true, headerTooltip: true, width: 90 }
I am looking to have the date displayed in the ui-grid in the following format:
dd/mm/yyyy
Would appreciate any suggestions on an elegant solution to change the format of the displayed date within the ui-grid column.