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,
I assume that everything works with the new version.
Please let me know if you have any further questions, or if I am missing something.
I have just updated to the latest version - so I am now at 12.2.20122.2038i (accoridng to the references in VS).
Thanks
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.
What version are you using? This might be a bug in an old version.
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.