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

Possible bug: recurring events - delete current occurrence not firing update event

1 Answer 112 Views
This is a migrated thread and some comments may be shown as answers.
Simon
Top achievements
Rank 1
Simon asked on 18 Feb 2019, 03:33 PM

In the simple example provided at the very bottom at: https://www.telerik.com/kendo-vue-ui/components/scheduler/data-binding/, it seems that no event is triggered when trying to delete a "current occurrence" of a recurring event. The behaviour should be that the update event is fired as far as I can tell from the documentation. This is also the behaviour when using the vue-component "kendo-schedulerdatasource". But using the SchedulerDataSource object does not trigger the update event.

I have attached the files that demonstrate the issue if for example trying to delete the recurring "Dance Practice" event

1 Answer, 1 is accepted

Sort by
0
Accepted
Veselin Tsvetanov
Telerik team
answered on 20 Feb 2019, 09:13 AM
Hello Simon,

Thank you for bringing this issue to our attention. The problem observed is caused by the fact that the DataSource Schema Model definition lacks an id. After adding the above configuration at the proper place, the recurring events behave as expected:
schema: {
    model: {
        id: "taskId",
        fields: {
            taskId: { from: 'TaskID', type: 'number' },
            title: { from: 'Title', defaultValue: 'No title', validation: {

Here you will find a StackBlitz sample implementing the above.

As a small token of gratitude for letting us know about the above documentation issue, I have updated your Telerik points.

Regards,
Veselin Tsvetanov
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Asked by
Simon
Top achievements
Rank 1
Answers by
Veselin Tsvetanov
Telerik team
Share this question
or