I have a grid that has a couple of nullable datetime fields. I can entered the date without use of the calender dropdown. But when using the dropdown calender, the field is not being updated.
Hello ,
By default UltraGrid updates underling data source on row change, so what you could do in your case is to set ultraGrid1.UpdateMode = Infragistics.Win.UltraWinGrid.UpdateMode.OnCellChangeOrLostFocus;, so when you select a date from dropdown calendar and leave the cell, the change will be applied on the underlying data source, please run the attached sample and choose a date from DateColumn of UltraGrid1, then leave the cell and see the changes of Ultragrid2.
Please let me know If you have any further questions.
I'm beginning to think that my file was corrupted in some way. I had copied another form and made modifications. I stripped out the grid saved, exited VS, and re-entered. Reloaded the form and brought in a new grid control, completed some modifications. Now the date fields are working as expected.
Thanks