Unplanned
Last Updated: 17 Apr 2024 14:46 by ADMIN
ADMIN
Dimitar
Created on: 30 Mar 2018 09:16
Category: Editors
Type: Bug Report
1
FIX. RadDateTimePicker - the underlying state is not respected when enabling the control from code.
Use attached to reproduce:
- Disable and then enable the RadSateTimePicker
- You will notice that even the checkbox is unchecked the control is enabled. 

Workaround:

radDateTimePicker1.Enabled =true;
if (!radDateTimePicker1.DateTimePickerElement.Checked)
{
    radDateTimePicker1.DateTimePickerElement.TextBoxElement.TextBoxItem.HostedControl.Enabled = false;
}
0 comments