Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Peter
Created on: 26 Feb 2013 06:21
Category: Editors
Type: Bug Report
0
FIX. When we change the Culture property, the control will display the current date even if the value of the control is NULL
FIX. When we change the Culture property, the control will display the current date even if the value of the control is NULL

Workaround:
Set an empty string to the Hosted TextBox control after the Culture set.
For example:
radDateTimePicker1.Culture = Thread.CurrentThread.CurrentCulture;
radDateTimePicker1.DateTimePickerElement.TextBoxElement.TextBoxItem.HostedControl.Text = "";
0 comments