In UI5, my OData is returning the date in the following format:
Mon Apr 09 2018 01:00:00 GMT+0100 (GMT Daylight Time)
I would like t
Have you tried using a formatter-function ?
path : 'MyoDataService>ExecuteDay', formatter : function(value) { return /* your format logic here */; }