Hi
I have a value object that holds a DateTime. The value object is bound on a wingrid.
When I make a new instance of my value object and add it to the binding source the column is shown my Date as follow:
01.01.0001
because the value object is initialized with the DateTime.MinValue.
Is there a way to config the grid: if MinValue show an emtpy string. Do I have grap the cell painting event?
Thx
Pascal
i have found a solution in another Thread:
http://forums.infragistics.com/forums/t/13619.aspx
solution: create your own DataFilter, grap the EditorToDisplay and returns in case of min value an empty string.