Planned
Last Updated: 17 Nov 2023 08:11 by ADMIN
Scheduled for [R1 2024] PI 1
Created by: Robert
Comments: 0
Category: Drawer
Type: Bug Report
0

Describe the bug
Currently only item template is supported and the user can't add custom components instead of items

Expected behavior
The user is able to add templates for the header for the footer and all the content of the drawer.

Temporary workaround is to use one dummy item and its template - https://stackblitz.com/edit/lfvpga?file=src%2Fmain.vue

Unplanned
Last Updated: 30 Oct 2023 11:26 by ADMIN
Scheduled for [R1 2024] PI 1
Created by: Daniel Knoll
Comments: 2
Category: Tooltip
Type: Bug Report
1

Describe the bug
The Native Tooltip is not hiding when the mouse cursor is moved fast from the target element in the direction where the Tooltip is about to appear.

To Reproduce

  1. Open this StackBlitz
  2. Hover the Button and move fast the mouse cursor to right(covering the area of the Tooltip)
  3. Repeat step 2 multiple times if the Tooltip hides

Expected behavior
The Tooltip should disappear when the mouse cursor is moved away from the target element no matter the direction in which the cursor is moved.

Screenshots
image

Declined
Last Updated: 18 Oct 2023 08:33 by ADMIN
Created by: Eunbyul
Comments: 4
Category: Grid
Type: Bug Report
0

Hello Team.

I appreciate grid's reorderable function work at Nuxt3(@kendo-vue-grid: 3.14.2).

But For some reason, this function doesn't work properly. so I report a bug.

I reproduce a stackblitz code.
https://stackblitz.com/edit/nuxt-starter-gmag5m


I implemented it like this,

After fetching(=GET) column data from the server, reorder the columns using kendo grid's reorderable function and save(=POST) it on the server.

I call columnExecute function, so server refetch(=GET) column data.

at /pages/index.vue, colums ref change rightly.

at /components/grid.vue, columnList ref change rightly.

But rendered kendo grid's column doesn't change.


please check this issue. 

 

Sincerely,
Eunbyul.

Unplanned
Last Updated: 16 Oct 2023 08:39 by ADMIN

Describe the bug
The displaying of consecutive events in different timezones is inconsistent when we have a yearly recurrence.

To Reproduce

  1. Open this StackBlitz example
  2. Set your timezone to Mexico City
  3. Refresh the page and go the Sun, 6/18 - Sat, 6/24 week view
  4. See the Program 7 and Program 8 events in the Sat, 6/24 column
  5. Set your timezone to Mainland China
  6. Refresh the page and go the Sun, 6/18 - Sat, 6/24 week view
  7. See only the Program 7 event in the Sat, 6/24 column. The Program 8 event is visible in the Sun, 6/25 column

The above is not replicable if the following configuration is removed:

recurrenceRule: 'FREQ=YEARLY',

Expected behavior
The consecutive events in the Scheduler component should be displayed consecutively in all timezones and no matter the recurrence rule defined for each of the events.

Screenshots
Mexico timezone:
image
China Mainland
image

Unplanned
Last Updated: 16 Oct 2023 08:34 by ADMIN
Created by: Ryan
Comments: 0
Category: Stepper
Type: Bug Report
0

Describe the bug

The following Stepper StepProps should not be required ones:

  • successIcon: String;
  • successSvgIcon: Object;
  • errorIcon: String;
  • errorSvgIcon: Object;

The current implementation of the Stepper's Steps requires the definition of the above properties which results to an error in a Typescript context.

Expected behavior
The listed properties should be made optional.

Completed
Last Updated: 06 Oct 2023 08:32 by ADMIN
Created by: Leigh
Comments: 0
Category: Form
Type: Bug Report
0

Describe the bug
using the kendoForm.onChange(target, {value}) method as per documentation causes a typescript error (2554). It expects kendoForm.onChange({target, value}).

To Reproduce
Steps to reproduce the behavior: ticket - 1622838

Completed
Last Updated: 27 Sep 2023 20:56 by ADMIN

Describe the bug
Resizable and reorderable true does not work in nuxt
https://stackblitz.com/edit/hy923e-fmrqsf?file=package.json
Try to resize or reorder

Planned
Last Updated: 25 Sep 2023 00:50 by Eunbyul
Created by: Eunbyul
Comments: 9
Category: Kendo UI® for Vue
Type: Bug Report
0

Describe the bug

at Nuxt Environment

 - pagable info option doesn't render information about the current page and the total number of records (both of setting true / false, all)

-  set pageable info option false, error raise like this.


To Reproduce

    - https://stackblitz.com/edit/nuxt-starter-mcocsr

    Expected behavior
    - render information about the current page and the total number of records
    - do not error raise

     

    Unplanned
    Last Updated: 21 Sep 2023 18:31 by Eunbyul

    Describe the bug
    The following warning appears in the browser's console when using the Native Grid in Nuxt context:
    image

    To Reproduce

    1. Open this example
    2. Check the browser's console

    Expected behavior
    No warnings or errors should appear in the console

    Unplanned
    Last Updated: 13 Sep 2023 12:42 by ADMIN

    Hello,

    I noticed a bug with the Tooltip component, it can be reproduced here: https://www.telerik.com/kendo-vue-ui/components/tooltip/positioning/

    1. Hover where it says HOVER ME until the tooltip shows up
    2. Move the mouse up very quickly. When the mouseout event is over the tooltip, the tooltip does not close -> NOK, the tooltip is open, but the mouse is no longer over the element

    In Tooltip.js there is a function called "handleMouseOut" that has this line:

    const element = currentDocument && currentDocument.elementFromPoint(event.clientX, event.clientY);

    Followed by:

    if (isTooltipElement(element) || this.computedTarget !== event.target) {
      return;
    }

    So when the mouseOut event is over the tooltip element, it is ignored, leaving the tooltip visible.

    I was able to fix this by adding the following CSS styling to the tooltip element: `pointer-events: none;`, but now I may have introduced a new issue.

    What is the reason for ignoring the mouseout event when it's over the tooltip?

    Unplanned
    Last Updated: 12 Sep 2023 17:51 by Luke

    Describe the bug
    When using the ColorPicker component in a scenario where you can edit the RGB values of the component by clicking on a NumericTextBox that controls the R, G, or B color channels or changing the NumericTextBox value results in the following error:
    image

    To Reproduce

    1. Open this project
    2. Expand the popup of the ColorPicker
    3. Click on a NumericTextBox that controls one of the R, G or B color channels

    Expected behavior
    No errors should be thrown when using the RGB inputs of the ColorPicker

    Completed
    Last Updated: 05 Sep 2023 13:44 by ADMIN
    Release [R3 2023] PI 2

    Describe the bug
    When defined, the aria-label of the ComboBox is applied to the wrapper element with a "k-combobox" class while it should be applied to the input element with the "k-input-inner" class

    To Reproduce

    1. Open this StackBlitz example
    2. Open browser's Devtools and inspect the ComboBox element
    3. See where the aria-label is applied

    Expected behavior
    The aria-label should be applied to the inner input element

    Screenshots
    image

    Completed
    Last Updated: 05 Sep 2023 13:43 by ADMIN
    Release [R3 2023] PI 2

    Describe the bug

    The event parameter available in the event handler of the TreeViewCheckChangeEvent has an incorrect type of TreeViewExpandChangeEvent while it should be TreeViewCheckChangeEvent.

    Screenshots
    image

    Completed
    Last Updated: 29 Aug 2023 05:10 by ADMIN
    Created by: Ernest
    Comments: 2
    Category: DateTimePicker
    Type: Bug Report
    0

    Describe the bug
    When using the different Date Inputs inside the Form component, if you try to manually enter a value, the following error appears in the console:
    image

    To Reproduce

    1. Open this StackBlitz example
    2. Enter a value for a selected DateInput component

    Expected behavior
    The value of the component should be changed based on the user's input. No error should appear in the console.

    Unplanned
    Last Updated: 24 Aug 2023 11:12 by Mohammed

    Describe the bug
    Custom value not persisted on blur when using value-primitive

    To Reproduce
    Steps to reproduce the behavior:

    If possible, share a runnable snippet on StackBlitz by following the steps below:

    1. Find an example in[ the documentation that looks similar to your case](https://stackblitz.com/edit/6kttks-xjfsfu?file=src%2Fmain.vue).
    2. focus the Combobox
    3. type some custom texts and click away to blur it
    4. Current: the custom typed text is cleared

    Expected behavior
    The custom typed value persists

    Completed
    Last Updated: 24 Aug 2023 08:57 by ADMIN
    Release [R3 2023] PI 2

    Describe the bug
    The @progress/kendo-vue-buttons is missing as peer to @progress/kendo-vue-grid package

    Planned
    Last Updated: 23 Aug 2023 15:57 by ADMIN
    Scheduled for [R3 2023] PI 2
    Created by: Charles
    Comments: 0
    Category: Kendo UI® for Vue
    Type: Bug Report
    1

    The following packages should be added as peer dependencies to the @progress/kendo-vue-data-tools package:

    • "@progress/kendo-svg-icons"
    • "@progress/kendo-vue-popup"
    • "@progress/kendo-vue-animation"
    Planned
    Last Updated: 23 Aug 2023 15:52 by ADMIN
    Scheduled for [R3 2023] PI 2
    Created by: Charles
    Comments: 0
    Category: Kendo UI® for Vue
    Type: Bug Report
    1

    Describe the bug
    The @progress/kendo-licensing is missing as peer to data-tools package

    Unplanned
    Last Updated: 15 Aug 2023 07:35 by Andreas

    Describe the bug
    When using the DropDownList in combination with its label and aria-required props the aria-required is not correctly rendered

    To Reproduce

    1. Open this CodeSandbox project
    2. Open the browser's DevTools
    3. Inspect the DropDownlist
    4. See where the aria-required attribute is rendered

    Expected behavior
    The aria-required attribute should be rendered on the element with the "combobox" role.

    Screenshots
    image

    Unplanned
    Last Updated: 14 Aug 2023 15:05 by Liam
    Created by: Liam
    Comments: 0
    Category: DropDownList
    Type: Bug Report
    0

    The DropDownList doesn't select the correct item on initial load in the list when list starts with 'Baseball, Basketball'. This can be observed in the following example:

    https://codesandbox.io/s/stoic-tdd-mfjlh2

    Steps to reproduce:

    • refresh the preview window
    • tab to or open the dropdownlist
    • press the 'B' key

    Expected result:
    'Baseball' is selected

    Actual result:
    'Basketball' is selected.

    Ticket ID: 1619469

    1 2 3 4 5 6