Unplanned
Last Updated: 19 Jun 2017 10:38 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 24 Mar 2017 08:00
Category: Scheduler/Reminder
Type: Bug Report
1
FIX. RadScheduler - buttons in EditAppointmentDialog are clipped on a Korean machine
Workaround: create a derivative of the EditAppointmentDialog. Open the designer and adjust the form's height and button's position. Then replace the default dialog with the custom one: 

public RadForm1()
{
    InitializeComponent();
    this.radScheduler1.AppointmentEditDialogShowing += radScheduler1_AppointmentEditDialogShowing;
}
CustomEditAppointmentDialog dialog;
private void radScheduler1_AppointmentEditDialogShowing(object sender, Telerik.WinControls.UI.AppointmentEditDialogShowingEventArgs e)
{
    if (dialog==null)
    {
        dialog = new CustomEditAppointmentDialog();
    }
    e.AppointmentEditDialog = dialog;
}
0 comments