I have a grid that is bound to a list (IEnumerable<T>) and displays a number of columns including a nullable DateTime property.
The column displaying the nullable DateTime is set up as follows:
<e-grid-column field="CompletionDate" headerText="Completed" format="dd-MMM-yy"></e-grid-column>
This is the corresponding property in the model:
public DateTime? CompletionDate { get; set; }
This has worked correctly when using non a non nullable DateTime (there is another column in the same grid set up in this way) but no formatting is applied for the nullable DateTime (e.g. "Fri Feb 14 2020 00:00:00 GMT+0000 (Greenwich Mean Time)")
Is there a way of applying formatting to a nullable column?