Nullable DateTime in grid column
New DiscussionWhen I attempt to bind a grid column to a nullable DateTime field in my class, my column displays [object.Object] in the column. This is displayed for all rows regardless of whether they are null or not. If I change the property to a non-nullable column, I get the date values and my replacement value for a nullable date, but I would prefer to have the column blank rather than populating my object with a really old date value like I did below to narrow the issue down. Is there a way to accomplish this? Thanks!
Class property:
public DateTime? ShipDate { get; set; }
Column definition:
<DateTimeColumn Width=”@(“*>160″)” Field=”ShipDate” HeaderText=”Ship Date” />
Column result (regardless of null value or not):

Change property (only change made. Records with 1/1/1900 would normally be null values but I replaced null with 1/1/1900 when populating my objects):
public DateTime ShipDate { get; set; }

