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

[Solved] Showing "Advanced editing form" on new appointment

8 Answers 266 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Support Riskminder
Top achievements
Rank 1
Support Riskminder asked on 26 Sep 2007, 09:37 AM
Hi all

Is it possible to display the default "advanced edit form" when i double click the scheduler to create a new appointment.

I would like the user to see the "advanced form" instead of having to click the little "more" link to display it.


Best regards
Bo

8 Answers, 1 is accepted

Sort by
0
Michael Hanson
Top achievements
Rank 1
answered on 26 Sep 2007, 06:50 PM
Me too please
0
T. Tsonev
Telerik team
answered on 28 Sep 2007, 02:20 PM
Hi Michael Hanson,

We might consider a property to control this behavior for the future versions. Until it is available, you can handle the FormCreating event and override the insert mode like this:

protected void RadScheduler1_FormCreating(object sender, Telerik.Web.UI.SchedulerFormCreatingEventArgs e) 
    if (e.Mode == Telerik.Web.UI.SchedulerFormMode.Insert) 
    { 
        RadScheduler1.ShowAdvancedInsertForm(e.Time); 
    } 
 


Regards,
Tsvetomir Tsonev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Michael Hanson
Top achievements
Rank 1
answered on 28 Sep 2007, 03:33 PM
Thanks for that tip
0
Support Riskminder
Top achievements
Rank 1
answered on 01 Oct 2007, 09:10 AM
Hi Tsvetomir

I can't find the following option RadScheduler1.ShowAdvancedInsertForm in the scheduler properties.

I am using vb.net


Best regards
Bo
0
Creata Vivendi
Top achievements
Rank 2
answered on 01 Oct 2007, 01:24 PM
Bo,

it works for me using the following VB.NET code:

' Creates default form action to show the advanced form  
Protected Sub RadScheduler1_FormCreating(ByVal sender As ObjectByVal e As Telerik.Web.UI.SchedulerFormCreatingEventArgs) Handles RadScheduler1.FormCreating  
    If e.Mode = Telerik.Web.UI.SchedulerFormMode.Insert Then 
        RadScheduler1.ShowAdvancedInsertForm(e.Time)  
    End If 
End Sub 
0
Support Riskminder
Top achievements
Rank 1
answered on 04 Oct 2007, 07:20 AM
Hi Lindsay

Works for me too, just neede the lates version of the scheduler :D


Best Regards
Bo
0
Juan Carlos Juarez
Top achievements
Rank 1
answered on 22 Dec 2009, 12:02 AM
Hi, I tried to implements this solution for show the advance Insert as default view when the user clicked to add a new appointment, but I can't see the e.Time, so I guessed that maybe was e.Appointment.Start but I can't see the advance form as default.

What's wrong?
0
Peter
Telerik team
answered on 22 Dec 2009, 11:32 AM
Hi Juan,

I am glad to inform you that we have introduced special properties to achieve the desired functionality. Now you can simply set StartEditingInAdvancedForm="true" and StartInsertingInAdvancedForm="true" for RadScheduler.


Regards,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler
Asked by
Support Riskminder
Top achievements
Rank 1
Answers by
Michael Hanson
Top achievements
Rank 1
T. Tsonev
Telerik team
Support Riskminder
Top achievements
Rank 1
Creata Vivendi
Top achievements
Rank 2
Juan Carlos Juarez
Top achievements
Rank 1
Peter
Telerik team
Share this question
or