Completed
Last Updated: 16 Mar 2015 15:56 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 07 Oct 2013 07:46
Category: Editors
Type: Bug Report
1
FIX. RadTimePicker with 24 hours (“en-UK”) format does not show the entire popup
To reproduce:
-add a RadTimePicker;
-change its culture:
this.radTimePicker1.Culture = new System.Globalization.CultureInfo("en-GB");

Workaround:
public Form1()
{
    InitializeComponent();

    this.radTimePicker1.Culture = new System.Globalization.CultureInfo("en-GB");
    this.radTimePicker1.TimePickerElement.PopupForm.Height =350;
   
}
0 comments