This is a migrated thread and some comments may be shown as answers.

Resizing Edit Appointment dialog

4 Answers 71 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Ben Lischner
Top achievements
Rank 1
Ben Lischner asked on 11 Nov 2010, 03:57 PM
Is there a way to control the size of the Edit Appointment dialog or at least make it resizeable by the user? I find that it's not effeciently using all the space available in the browser and would like to make it taller to be able to display more custom fields without forcing the user to scroll. Earlier versions of the control didn't have this problem.

4 Answers, 1 is accepted

Sort by
0
Richard Slade
Top achievements
Rank 2
answered on 11 Nov 2010, 05:24 PM
Hi,

You should be able to do this by getting to the appointment dialog via the AppointmentEditDialogShowing event.
have a look at this documentation

hope that helps
Richard
0
Richard Slade
Top achievements
Rank 2
answered on 11 Nov 2010, 05:38 PM
Hi again,

This will allow you to resize the dialog

Private Sub RadScheduler1_AppointmentEditDialogShowing(ByVal sender As System.Object, ByVal e As Telerik.WinControls.UI.AppointmentEditDialogShowingEventArgs) Handles RadScheduler1.AppointmentEditDialogShowing
    Dim dialog As EditAppointmentDialog = CType(e.AppointmentEditDialog, EditAppointmentDialog)
    dialog.FormBorderStyle = Windows.Forms.FormBorderStyle.Sizable
End Sub

Richard
0
Ben Lischner
Top achievements
Rank 1
answered on 11 Nov 2010, 06:33 PM
I'm so sorry, I posted this to the wrong forum! I meant to ask this about the Silverlight controls. Thanks for you replies.
0
Richard Slade
Top achievements
Rank 2
answered on 11 Nov 2010, 06:35 PM
No problem. Hope you find your answer. 

Richard
Tags
Scheduler and Reminder
Asked by
Ben Lischner
Top achievements
Rank 1
Answers by
Richard Slade
Top achievements
Rank 2
Ben Lischner
Top achievements
Rank 1
Share this question
or