Hi, I've got a grid and I'm declaring the columns as
and everything works lovely. I've even got it set so that on load time of the window, it converts all the date/time columns into date/time format using
.
My problem is when I click the cell to edit the date, it flips back to the value I entered in there. So if I enter '1/2/2003' it will format it to 'January 2 2003' like it should. But when I click the cell, it enters edit mode and changes back to '1/2/2003'. How do I fix this?
VB.NET:
Dim col As Infragistics.Win.UltraWinGrid.UltraGridColumn
VB.NET:
col.Format = m_sysSettings.DATE_FORMAT
My problem is when I click the cell to edit the date, it flips back to the value I entered in there. So if I enter '1/2/2003' it will format it to 'January 2 2003' like it should. But when I click the cell, it enters edit mode and changes back to '1/2/2003'. How do I fix this?