Completed
Last Updated: 17 Jun 2014 08:41 by ADMIN
ADMIN
Ralitsa
Created on: 07 Mar 2014 10:41
Category: Editors
Type: Bug Report
0
IMPROVE. RadDateTimePicker - The ReadOnly property should apply to the RadCheckBoxElement in the RadDateTimePicker
To reproduce: 
1. Add RadDateTimePicker and set these properties: 
this.radDateTimePicker1.ReadOnly = true;
this.radDateTimePicker1.ShowCheckBox = true;
2. When run the project you will see that the checkbox is not read only. 

Workaround: 
RadCheckBoxElement checkboxelement = this.radDateTimePicker1.DateTimePickerElement.CheckBox;
checkboxelement.ReadOnly = true;
0 comments