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
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
0
Michael Hanson
Top achievements
Rank 1
answered on 26 Sep 2007, 06:50 PM
Me too please
0
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:
Regards,
Tsvetomir Tsonev
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
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
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:
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 Object, ByVal 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
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?
What's wrong?
0
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.
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.