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

Recurring Events are Not Saving

5 Answers 92 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Andrew
Top achievements
Rank 1
Andrew asked on 17 Dec 2015, 04:19 PM

This question has been asked, but all of the replies generally say just add fields to the schema and it will work. I think all necessary recurrence fields are in my schema. This is it: 

 

schema: {
                model: {
                    id: "MeetingID",
                    fields: {
                        MeetingID: {
                            from: "meeting_id"
                        },
                        title: {
                            from: "desc",
                            defaultValue: "No title",
                            validation: {
                                required: true
                            }
                        },
                        start: {
                            type: "date",
                            from: "start_time"
                        },
                        end: {
                            type: "date",
                            from: "end_time"
                        },
 
                        description: {
                            from: "case_name"
                        },
                        caseManager: {
                            from: "case_manager",
                            nullable: true
                        },
 
                        mediatorIds: {
                            from: "mediator_LawyerIDs"
                        },
 
                        result: {
                            from: "meeting_result",
                            nullable: true
                        },
                        caseNumber: {
                            from: "case_number",
                            nullable: true
                        },
                        case_location: {
                            from: "location",
                            nullable: true
                        },
                        parties: {
                            from: "parties",
                            nullable: true
                        },
                        numParties: {
                            from: "number_of_parties",
                            nullable: true
                        },
                        created_by: {
                            from: "created_by",
                            nullable: true
                        },
                        creation_timestamp: {
                            from: "creation_timestamp",
                            nullable: true
                        },
 
                        //Recurrence specific fields
                        recurrenceId: {
                            from: "RecurrenceID"
                        },
                        recurrenceRule: {
                            from: "RecurrenceRule"
                        },
                        recurrenceException: {
                            from: "RecurrenceException"
                        },
                        attendies: {
                            from: "Attendies"
                        },
                        type: {
                            from: "Type"
                        },
                        deadline: {
                            from: "Deadline"
                        },
                        priority: {
                            from: "Priority"
                        },
                        labelAs: {
                            from: "LabelAs"
                        }
                    }
                }
            }
        },

 

Help is greatly appreciated.

5 Answers, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 21 Dec 2015, 06:32 AM
Hello,

I have tested a similar test scenario with the same recurrence fields in the schema and it worked correctly at my side. Here is my dojo page.  Would you please elaborate a little bit how is your scenario different and send us a sample runnable page so we could be more helpful.

Regards,
Plamen
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Andrew
Top achievements
Rank 1
answered on 21 Dec 2015, 03:16 PM
Sure, attached you'll find my complete JS script and HTML document.
0
Andrew
Top achievements
Rank 1
answered on 21 Dec 2015, 04:36 PM
You will also find in that zip file a "Select All" button which is currently non-functional. One issue at a time, however.
0
Plamen
Telerik team
answered on 22 Dec 2015, 06:43 AM
Hi,

I have inspected the code yet it was not runnable and could not observe the described issue. It is most probably caused by some custom code in your scenario. In such cases in order to be more helpful with solving the issue we recommend isolating the issue into a sample runnable dojo page where all the custom not related to the control code is removed. 

Regards,
Plamen
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Andrew
Top achievements
Rank 1
answered on 22 Dec 2015, 01:53 PM
I guess I should have realized the code wouldn't run, as it depends on API calls it probably can't make... My apologies. I'll try to set up my issue in a dojo today.
Tags
Scheduler
Asked by
Andrew
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Andrew
Top achievements
Rank 1
Share this question
or