Hi guys, I am using an UltraDateTimeEditor on my form but for some strange reason when using the up/down year spinner on the calendar the text goes invisible! What can possible be the problem? Please see the Picture attached!
Unfortunately, this is not something that we have control over, since it is a .NET MonthCalendar that is shown. I can reproduce the same issue when I just place a MonthCalendar on a form without any Infragistics references. It does seem that once you click into the calendar area, the rest of the dates show up again, but trying to force the calendar to redraw itself when changing the date doesn't seem to have any effect.
-Matt
You might want to consider using UltraCalendarCombo instead of UltraDateTimeEditor. It's a nicer-looking control, anyway. :)
Hi guys, we managed to solve this problem!
private void dtpDateOfBirth_ValueChanged(object sender, EventArgs e){ dtpDateOfBirth.DateTime = (DateTime)dtpDateOfBirth.Value;}
When user selects the date in the control and deletes it manually then null refeerence exception appears.
private void dtpDateOfBirth_ValueChanged(object sender, EventArgs e){ if (dtpDateOfBirth.Value != null) { dtpDateOfBirth.DateTime = (DateTime)dtpDateOfBirth.Value; } }
Thanks for the heads up!
Regards
Hi
Have u handled this issue in case of Ultragrid? the same issue exists in case of ultragrid datetime type column. This problem is irritating the client.
Asad