Unplanned
Last Updated: 22 Nov 2023 13:05 by ADMIN
Created by: Zack
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0

Hi there,

We create a dashboard like this:

We need to export in PDF format and we use the component:

https://www.telerik.com/kendo-vue-ui/components/pdf-processing/

Now we need to export in PNG or JPG format.

And this is our request: a Kendo Component that exports a dashboard with the same quality of the PDF component.

Thanks in advance.

Unplanned
Last Updated: 14 Nov 2023 13:55 by ADMIN
Created by: Liu
Comments: 1
Category: Slider
Type: Feature Request
1

I would like to be able to add a bubble to display the current value in the slider:

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

Unplanned
Last Updated: 27 Oct 2023 09:23 by ADMIN
Created by: Bastien
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1

It would be great to have a clear button in the DatePicker, as today erasing value requires 3 select-delete operations (one for the day, one for the month, and one for the year)

It would make it consistent with TextBox, ComboBox, MultiSelect & AutoComplete, which renders in a comparable way

Unplanned
Last Updated: 27 Oct 2023 07:21 by QualiWareUA
Created by: QualiWareUA
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
0

The Spreadsheet component is among the last components in the Kendo UI for Vue suite that is available only as a Wrapper component. 

Providing a Native version of the Spreadsheet will be a big improvement to the suite. 

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.

Unplanned
Last Updated: 05 Oct 2023 15:26 by ADMIN

The current implementation of the Native Grid doesn't support the row reordering functionality when the Grid is configured to work in virtualization mode.

Please provide the row reordering functionality in a scenario with virtual scrolling.

Unplanned
Last Updated: 05 Oct 2023 10:11 by eric
Created by: eric
Comments: 0
Category: Scheduler
Type: Feature Request
0

The current implementation of the Kendo UI for Vue Native Scheduler doesn't provide the 'Date Grouping' option that is available in the Kendo UI for jQuery Scheduler component.

Providing the discussed 'Date Grouping' option will make the Vue suite consistent with the jQuery one and will help the users in the migration of their projects from Wrapper to Native Scheduler.   

Unplanned
Last Updated: 02 Oct 2023 15:55 by Iswanto
Created by: Iswanto
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
1
It would be beneficial if we had a Ruler component similar to this one:

https://daybrush.com/ruler/
Unplanned
Last Updated: 27 Sep 2023 11:54 by Kevin
Created by: Kevin
Comments: 0
Category: Menu
Type: Feature Request
2
It would be beneficial to have the option to open a menu item in a new tab
Unplanned
Last Updated: 26 Sep 2023 10:20 by Bruno71
Created by: Bruno71
Comments: 0
Category: DropDownList
Type: Feature Request
1
Currently, if we bind the value of the DropDownList to a value that is not present in the data, no selection is displayed. It would be beneficial if the DropDownList showed the defaultItem placeholder when the value is null and when it is not present in the data array.
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: 19 Sep 2023 13:35 by Luke
Created by: Luke
Comments: 0
Category: ColorPicker
Type: Feature Request
2
Currently, the ColorPicker's Cancel button does not close the popup, it only resets the selected colors. It would be beneficial to close the popup as well.
Unplanned
Last Updated: 18 Sep 2023 11:40 by ADMIN
Created by: Mark
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0

Hi there.

so the orgChart generates a great organizational hierarchy, but I want to be able to drag and drop elements to other parents like you can do with the Asp.net ajax version of the orgChart.  How do I do this please?

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

Unplanned
Last Updated: 28 Aug 2023 14:01 by Kwangjae
Currently hiding a column with a hidden prop is not supported for the native version of the TreeList
Unplanned
Last Updated: 28 Aug 2023 13:40 by Ashiq
Currently changing the bullet color to be the same as the text is not supported.
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

1 2 3 4 5 6