Completed
Last Updated: 07 Oct 2022 14:31 by ADMIN
Release R1 2023 - Increment 1 (26.10.2022)
Louis-Philippe
Created on: 28 Sep 2022 12:11
Category: Scheduler
Type: Bug Report
0
A modal appears when double-clicking on a recurring event inside a non-editable Native Scheduler

Describe the bug
A modal for selecting the editing mode of a recurring event appears on a double click over a recurring event even if the Native Scheduler is not editable.

To Reproduce

  1. Open this StackBlitz example
  2. Double-click on a random recurring event

Expected behavior
No popups should appear when double-clicking on an event when the Scheduler is not editable.

Screenshots
image

2 comments
ADMIN
Petar
Posted on: 29 Sep 2022 06:41

Hi, Louis-Philippe.

Thank you for sharing the workaround with the community! It will surely help someone before we fix the bug.

Regards,
Petar
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Louis-Philippe
Posted on: 28 Sep 2022 18:05

I actually found a workaround for this case (look at v-on):

<template
            v-slot:itemViewRender="{ props, listeners }"
          >
            <SchedulerViewItem
              v-bind="filterPropsSchedulerViewItem({ ...props})"
              :item-style="{
                height: '57px',
              }"
              v-on="isEditable ? listeners : null"
            />
          </template>