Completed
Last Updated: 15 Dec 2015 16:30 by ADMIN
ADMIN
Dimitar
Created on: 14 Dec 2015 07:17
Category: Editors
Type: Bug Report
1
FIX. RadDateTimePicker - the MaxDate is set to Today the value is auto set to the max date when the control looses the focus.
To reproduce:
 this.radDateTimePicker1.MaxDate = DateTime.Today;
private void radButton1_Click(object sender, EventArgs e)
{
    this.ValidateChildren();
}

Workaround:
this.radDateTimePicker1.MaxDate = new DateTime( DateTime.Today.Year,DateTime.Today.Month,DateTime.Today.Day, 23,59,59);
0 comments