Unplanned
Last Updated: 19 Mar 2026 08:04 by ADMIN
Created by: Ryan
Comments: 1
Category: Kendo UI for Vue
Type: Feature Request
1

A dedicated column picker would be far more intuitive: its discoverability is higher, and features like the indeterminate ‘select all’ checkbox and instant search align with the law of approximation.

For our users handling large datasets, this makes for a much faster, more cohesive tool.

Completed
Last Updated: 17 Mar 2026 06:31 by ADMIN
Created by: Karl
Comments: 5
Category: Kendo UI for Vue
Type: Bug Report
0

1. You have documentation, eg at https://www.telerik.com/kendo-vue-ui/components/charts/sparkline

2. Type "sparkline" into the search box on your own website

3. No results are returned.

This used to work. You pushed a change which broke your site's search functionality.

Unplanned
Last Updated: 05 Mar 2026 10:42 by Rama
Created by: Rama
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
2
It would be beneficial if the DatePicker had an option for enabling auto-switching between segments.
Unplanned
Last Updated: 27 Feb 2026 07:29 by ADMIN
Created by: Pete
Comments: 1
Category: Kendo UI for Vue
Type: Feature Request
1
Hi Telerik Team,

It's great to see MCP servers now available for Angular, React, and Blazor. Any plans to add support for Kendo UI for Vue as well?

We use Kendo UI for Vue in production, and having MCP support would really improve AI-assisted development, component discovery, and overall DX. It would also help keep feature parity across the Kendo ecosystem.

Would love to see Vue.js included.

Thanks!

Pete


Won't Fix
Last Updated: 12 Feb 2026 07:25 by ADMIN
Created by: n/a
Comments: 1
Category: Kendo UI for Vue
Type: Bug Report
0

Describe the bug
The rowReorder event is missing in the Wrapper Grid component, while it is available in the Kendo UI for jQuery Grid. Currently, the only way the event can be used is by using a code like the below in the mounted hook of the Vue app:

    var grid = this.$refs.grid.kendoWidget();
    grid.bind('rowReorder', function (e) {
      console.log('row', e);
    });

Expected behavior
The rowReorder event should be available for usage as the other events of the Wrapper Grid

Completed
Last Updated: 11 Feb 2026 10:46 by ADMIN
Created by: John Campion
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
0

Currently in Vue we don't provide the ability to share with the customers the source code before the compilation but just the already compiled code.

We need to provide the ability to fork the repository and build components from the Vue repository similarly to the way it is done in Angular and React

Won't Fix
Last Updated: 11 Feb 2026 10:44 by ADMIN

I am using Kendo Vue Wrapper Grid that is editable. I am using the propery 

:editable-create-at="bottom"

but the new rows are always added at the top.

There is another open issue related to this.

https://github.com/telerik/kendo-ui-core/issues/5198

 

Please provide a fix.

 

Completed
Last Updated: 11 Feb 2026 07:11 by ADMIN
Created by: Antoniya
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
2
Add resources (documentation and code) for Composition API.
Completed
Last Updated: 11 Feb 2026 07:01 by ADMIN

Describe the bug
DropdownTree component throws an error when user opens dropdown menu when they selected an item already, if valueRender prop is configured.

To Reproduce
Steps to reproduce the behavior:

  1. Open this example - https://codesandbox.io/p/sandbox/3tmtkk?file=%2Fsrc%2Fmain.vue
  2. Select any item from DropdownTree. No errors would be thrown.
  3. Try to press on dropdown tree to open dropdown menu again.
  4. User will see this error instead of dropdown tree menu opening.
Completed
Last Updated: 11 Feb 2026 06:58 by ADMIN
Release 2025 Q2 (May)

Describe the bug
A licensing warning may continue to appear in the browser's console, no matter whether the licensing activation has been successful or not.

The issue is replicable when the user trying to activate a license has had an active license in the past and this license is already expired.

To Reproduce
Because of the specifics of the issue, a project in which the bug can be replicated won't be publicly provided.

Expected behavior
The license activation process should activate one's license no matter the previous licensing history of the user

Unplanned
Last Updated: 28 Nov 2025 13:29 by ADMIN
Created by: Firas
Comments: 4
Category: Kendo UI for Vue
Type: Feature Request
1

Hello everyone

We are using Editor for our application,
Is it possible to add the possibility to Copy and Apply Format
It used to be included in the older version "@progress/kendo-editor-vue-wrapper"
Here a screenshot of the older one : 

Best Regards

 

Unplanned
Last Updated: 06 Nov 2025 08:20 by Antti
Created by: Antti
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
We should implement row click move similar to JQuery: https://www.telerik.com/kendo-jquery-ui/documentation/controls/grid/row-drag-drop?
Unplanned
Last Updated: 27 Oct 2025 10:51 by Paul
Created by: Paul
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
It would be great if KendoUI for Vue had the same table wizard dialog feature as JQuery: 

jQuery Editor Table Wizard Dialog - Kendo UI for jQuery
Duplicated
Last Updated: 08 Oct 2025 13:59 by ADMIN
Created by: James
Comments: 1
Category: Kendo UI for Vue
Type: Feature Request
1
Providing a Native PDFViewer Component to Vue would bring it in line with other UI platforms and provide a much needed feature for our use.
Unplanned
Last Updated: 07 Oct 2025 13:29 by udeni

It would be beneficial to explicitly control the left-to-right rendering order of overlapping events — for example, by using a custom field such as isPrivate or by following the data source order.

Unplanned
Last Updated: 06 Oct 2025 10:11 by ADMIN

Hey!

When using the GridColumnMenuCheckboxFilter with large datasets (e.g. 100k+ items), the component performs poorly and can even crash the browser due to the lack of memoization and unnecessary recomputation.

There are two main optimizations that could drastically improve performance:

1. Simplify the data before passing it to the filter
Instead of sending the entire Grid dataset to the GridColumnMenuCheckboxFilter, it’s better to extract and send only the distinct values relevant to that specific column. This significantly reduces render time both for the menu and the grid.

2. Memoize the computation internally
If simplifying data externally isn't possible, the component should at least memoize the list of unique values it derives from the data. Right now, it recomputes this on every render, which is inefficient.

Example: https://stackblitz.com/edit/de8qtiht?file=src%2Fmain.vue

The example provides two ColumnMenu implementations:
    •    The default (unoptimized)
    •    A custom, memoized version with basic optimizations (memo + uniquify)

You can switch between them in main.vue to observe the performance difference.

Expected behavior:
The default GridColumnMenuCheckboxFilter should:
    •    Either memoize its internal computation (option 2),
    •    Or documentation should clearly recommend preprocessing the data before passing it in (option 1).

This change would vastly improve UX for users working with large datasets.

    
Unplanned
Last Updated: 06 Oct 2025 06:59 by ADMIN

When enabling the columnMenu feature in the Grid component, it is also applied to special columns such as the group indicator column or the expand/collapse column. These columns are not user-defined and should not include the column menu.

This leads to a confusing UX where users can click the column menu icon on non-data columns, which serve internal purposes only.

Example: https://stackblitz.com/edit/uj5myrrw?file=src%2Fmain.vue

Expected behavior: Only user-defined data columns should render the column menu icon. Internal columns (like group indicators or row expanders) should not display it.


Unplanned
Last Updated: 30 Sep 2025 11:50 by Thomas
Created by: Thomas
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
It would be great if the Kendo UI for Vue had a MultiColumnCombox component
Unplanned
Last Updated: 19 Sep 2025 12:25 by Samba
Created by: Samba
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
It would be beneficial if the ChartTooltip exposed an appendTo, offset or collision prop.
Unplanned
Last Updated: 13 Aug 2025 12:52 by Jason
Created by: Jason
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1

We have a requirement for the Grid to support sticky rows when virtual scrolling is enabled. I know it is documented as a known limitation on https://www.telerik.com/kendo-vue-ui/components/grid/rows#known-limitations but we would like to request the grid add this feature. We would also like to request this feature using grouped data, as I see it also is not supported in this scenario. 

One specific scenario is we have 2 groups and both groupings are sticky. The first group would have a few rows of data, while the second group has hundred or thousands of rows. We would like to allow for row virtualization on the second group while keeping the first group sticky at the top. Below is an example screenshot where we have the first "Benchmark" group having one row, the second "Investments" group having a sticky "Total" row at the top, and then rows of data that can be rendered with row virtualization to paginate. 

1 2 3 4 5 6