Hi,
I have some values that are DateTimeOffsets. I'm having trouble formatting them in a grid though.
This code:
columns.Bound(c => c.StartTimestamp).Width(750).Format(
"{0:dd/MM/yyyy HH:mm:ss}"
);
produces:
2019-06-06T17:47:52.0256922+01:00
when what I want to see is:
06/06/2019 17:47:52
Is the Grid unable to format DateTimeOffsets, or am I missing something?
Thanks,
Gary