Unplanned
Last Updated: 21 Oct 2025 11:11 by ADMIN
Created by: MURIELLE
Comments: 1
Category: Grid
Type: Feature Request
1

Add a numeric indicator for the sorted columns shown when multiple columns are sorted to indicate which order the columns are being sorted in.

This feature is already available in the angular Grid:

https://www.telerik.com/kendo-angular-ui/components/grid/sorting/multi-sort 

Unplanned
Last Updated: 08 Oct 2025 08:38 by ADMIN
Created by: Jason
Comments: 1
Category: Grid
Type: Feature Request
1

Introduce an option to setup locked columns with grouping in Kendo UI for Vue Grid.

The feature is already available in the React Grid:

   
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. 

Unplanned
Last Updated: 08 Aug 2025 09:29 by Wendy
Created by: Wendy
Comments: 0
Category: Grid
Type: Feature Request
3
Currently, row virtualization can not be used with paging. Provide an option to utilize row virtualization with paging, like in the React version of the component.
Unplanned
Last Updated: 30 Jul 2025 14:25 by jake
Created by: jake
Comments: 0
Category: Scheduler
Type: Feature Request
0

Provide support for custom edit items like in KendoReact. This will allow the customization of the removeDialog and the occurrenceDialog, and much more.

https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item 

Unplanned
Last Updated: 30 Jul 2025 10:43 by Jerry
Created by: Jerry
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
Currently, the Kendo UI for Vue TreeView does not support virtualization, which is needed when rendering large trees. The Virtualization of the TreeView will also allow virtualization in the DropDownTree component.
Unplanned
Last Updated: 22 Jul 2025 11:56 by ADMIN
It would be nice feature to have a built-in property for auto-closing a notification after a provided duration.
Unplanned
Last Updated: 14 Jul 2025 14:20 by Eric
Currently, the color prop only accepts a valid CSS string, including hex and RGB. Provide an option to use CSS variables as well.
Unplanned
Last Updated: 02 Jul 2025 10:56 by Daniel
Created by: Daniel
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
It would be great if the Kendo UI for Vue Native Grid had a built-in contextMenu similar to React
Unplanned
Last Updated: 24 Jun 2025 06:25 by ADMIN
Created by: Michal
Comments: 1
Category: Kendo UI for Vue
Type: Feature Request
1

How to add grid footer (one row with one cell for all columns). When I try to use grid cell footer template I can't pass colspan to it (to normal cell I can). When I build template for normal cell it replace whole <td> section. When I do it same for cell footer the template content is placed inside predefined <td> - I can't replace it by my code like in normal cell. 

Can You add grid footer for all colums or fix footer cell template to work like regular cell template?

Unplanned
Last Updated: 20 Jun 2025 08:26 by JP
Created by: JP
Comments: 0
Category: Kendo UI for Vue
Type: Feature Request
1
The Agenda view currently does not provide a way to customize the content of the Time column. For events that span multiple days (especially all-day events), this limitation makes it difficult to visually communicate when an event starts, continues, and ends
Unplanned
Last Updated: 19 Jun 2025 14:05 by ADMIN
Scheduled for 2025 Q3 (Aug)

Describe the bug

After inserting an image using the "Insert Image" tool it is possible to add a hyperlink to it using the "Insert Hyperlink" tool.

If the image's dimensions are then edited by selecting the image and using the "Insert Image" tool, the hyperlink that was added no longer exists.

Before:

After:

To Reproduce

  1. Open https://codesandbox.io/s/elegant-parm-l7w93g
  2. Right click the image in the editor, you should see the option to open the link.
  3. Select the image
  4. Open the "Insert Image" tool
  5. Change the width or height to another value (e.g. width -> 200px)
  6. Click the insert button within the tool
  7. Right click the image in the editor, you should see the option to open the link is no longer there.

Expected behaviour

The image should retain any hyperlinks that have been added even if it is resized.

Unplanned
Last Updated: 19 Jun 2025 14:03 by ADMIN
Scheduled for 2025 Q3 (Aug)
Created by: Patrick
Comments: 0
Category: Editor
Type: Bug Report
0

Describe the bug
The following warning appears when using the InsertTable tool of the Native Editor:

[Vue warn]: Component emitted event "tableinsert" but it is neither declared in the emits option nor as an "onTableinsert" prop

NOTE: The warning won't appear when the project is built for production but, still this issue should be fixed

To Reproduce

  1. Open this StackBlitz example
  2. Insert a random table using the InsertTable tool
  3. Check the browser's console

Expected behavior
No warnings should appear when using the InsertTable tool

Screenshots
image

Unplanned
Last Updated: 11 Jun 2025 14:48 by Jonathan

When starting he component, to load the initial value, the Api returns the id selected as a string ("2") and DropDownList does not display the selected option. Changing the value to an integer (2) displays it correctly.

This issues requires changing the values before padding them to component, but I would  that the component parse automatically the comparision, or allow us handle the strict comparision

Unplanned
Last Updated: 11 Jun 2025 08:33 by Claudia
It would be great if there was an exposed prop for changing the filter operator of the ColumnMenu searchbox
1 2 3 4 5 6