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

RAD Scheduler ON edit showing recurrence popup

6 Answers 293 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Anto (DLL Version : 2008.3.1314.35)
Top achievements
Rank 2
Anto (DLL Version : 2008.3.1314.35) asked on 29 Nov 2011, 05:31 PM
Hi Everybody,

I have downloaded the latest version(2011.2.915.35) trial of telerik.

When i create an event in rad scheduler by default its creating the event as recurring event,
i don't want to create events as recurring event.


and also while deleting  and editing its showing an confirmation popup 

For edit its asking "Editing a recurring appointment" with two options "Edit only this occurence" & "Edit the series"

Have attached the screen shot as well.

i don't want this confirmation window.

Anyone please give me suggestions to remove this confirmation window and to change creating appointment as recurring by default.

Thank You

6 Answers, 1 is accepted

Sort by
0
Ivana
Telerik team
answered on 02 Dec 2011, 01:58 PM
Hi Anto,

Try setting the following properties of the RadScheduler: DisplayDeleteConfirmation and DisplayRecurrenceActionDialogOnMove to false, as in the code-block below:
<telerik:RadScheduler runat="server" ID="RadScheduler1" DisplayDeleteConfirmation="true"
    DisplayRecurrenceActionDialogOnMove="true">
</telerik:RadScheduler>
When the aforementioned properties are set to true (as they are by default),  a confirmation dialog is displayed when a user tries to delete an appointment or to alter a recurring one.

As for the recurring appointments created by default, this is rather strange, because recurring appointments are created only when a user checks the Recurrence check box in the Advanced Form, and defines a recurrence pattern for an appointment. Could you clarify a little bit more, how does this exactly happens?

Best wishes,
Ivana
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
shruti
Top achievements
Rank 1
answered on 16 May 2012, 11:01 AM
Hi Telerik Team,
Even after setting these properties to false, the confirmation dialog is still getting displayed.
'DisplayDeleteConfirmation="false" DisplayRecurrenceActionDialogOnMove="false"'
I even tried by setting the property

RecurrenceChoiceDialogDefaultRecurrenceMode

 

 

="Series"

but still the confirmation dialog is getting displayed. please let me know some work around for this asap.


Thanks.

 



0
Ivana
Telerik team
answered on 19 May 2012, 02:54 PM
Hi Anto,

The following should help:
function OnClientRecurrenceActionDialogShowing(sender, args)
{
    var action = args.get_recurrenceAction();
    var appointment = args.get_appointment();
    if (action == Telerik.Web.UI.RecurrenceAction.Edit)
    {
        args.set_cancel(true);
        sender.showAdvancedEditForm(appointment);
    } else if (action == Telerik.Web.UI.RecurrenceAction.Delete)
    {
        args.set_cancel(true);
        sender.deleteAppointment(appointment, false)
    } else //If the action is resize the event is just canceled.
    {
        args.set_cancel(false);
    }
}
<telerik:RadScheduler runat="server" ID="RadScheduler1" SelectedView="WeekView" DisplayDeleteConfirmation="false"
    DisplayRecurrenceActionDialogOnMove="false" OnClientRecurrenceActionDialogShowing="OnClientRecurrenceActionDialogShowing">
</telerik:RadScheduler>

Kind regards,
Ivana
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Matt
Top achievements
Rank 1
answered on 21 Nov 2013, 01:35 PM
Unfortunately, it doesn't work. It doesn't even fire.
0
Boyan Dimitrov
Telerik team
answered on 26 Nov 2013, 01:02 PM
Hello,

I would like to clarify that we are not aware of any problem with the RadScheduler OnClientRecurrenceActionDialogShowing client-side event.
Please note that this event is fired when user tries to edit(move, re-size) or delete an recurring appointment. Could you please confirm that confirmation dialog is shown when you try to edit(move, re-size) or delete a recurring appointment but the event is not fired? Could you please confirm that you experience same problem with our demos as well?

Regards,
Boyan Dimitrov
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Francisco
Top achievements
Rank 1
answered on 23 Aug 2016, 01:54 PM
Thanks Ivana,It's Work!!!
Tags
Scheduler
Asked by
Anto (DLL Version : 2008.3.1314.35)
Top achievements
Rank 2
Answers by
Ivana
Telerik team
shruti
Top achievements
Rank 1
Matt
Top achievements
Rank 1
Boyan Dimitrov
Telerik team
Francisco
Top achievements
Rank 1
Share this question
or