Completed
Last Updated: 29 Apr 2020 14:04 by ADMIN
Created by: Sander
Comments: 7
Category: Grid
Type: Feature Request
16

Hi Kendo.

 

We're trying to replace Vue Grid Wrapper with the new Native Grid and most things works awesome. We only have one blocking feature that isn't inplemented yet.

 

So my question is when is the footer-logics comming for the native grid. We want to show aggregates in the fixed footer and it would be awesome it is like the 'headerCellRender' function defined on the grid. We know there is a gouping aggregate, but this isn't the thing we want.

 

Is there any idea when or even if it is comming to the native grid?

 

Kind regards,

Sander

Completed
Last Updated: 9 Feb 2022 08:00 by ADMIN
Currently, the binding respects the masked value
There could just be an option you can specify on kendoMaskedTextbox that tells it whether to bind against the raw value or not
Unplanned
Last Updated: 12 Aug 2021 08:40 by ADMIN

Currently, the MulltiView configuration of the Calendar component doesn't visualize the months above each Calendar.

The requested functionality can be observed in this example from the Kendo UI for jQuery suite. The usage of the MultiView functionality of the Calendar will be easier if it looks similar to the linked above example. 

Completed
Last Updated: 13 Jun 2023 07:44 by ADMIN
Created by: Sandy
Comments: 8
Category: Kendo UI® for Vue
Type: Feature Request
8
I was looking through the documentation for the native drop down list and did not see an example for grouping like the wrapper drop down list has. https://www.telerik.com/kendo-vue-ui/components/datasource/datasource/grouping/ I would like to request a group functionality for the native drop down list.
Completed
Last Updated: 12 Jun 2023 07:18 by ADMIN
Created by: n/a
Comments: 2
Category: Kendo UI® for Vue
Type: Feature Request
8

Hi Team,

Can you consider the implementation of a Native TileLayout component? 

It will be a very nice add-on to the Native Vue suite.

Completed
Last Updated: 22 Sep 2022 07:31 by ADMIN
Created by: Minas
Comments: 3
Category: Grid
Type: Feature Request
7

Hello there,

 

I am looking for a loading spinner solution to use with Vue Native Grid. I could not find something on the docs.

Is there any way I can show some kind of loading indicator while loading the data?

I am not using data source from Kendo, just basic method to populate `:data-items="items"`

 

Thank you!

Completed
Last Updated: 12 Feb 2020 12:37 by ADMIN
Created by: n/a
Comments: 2
Category: Kendo UI® for Vue
Type: Feature Request
6
For Vue components, the v-model on a multi-combo box and every component must bind to the underlying object.
:value-primitive="false" doesn't work as per some suggestions.

v-model binding to the underlying object is a MUST HAVE, Top priority, number one with a bullet. Without it, your components are a PITA to use and my current proof of concept might end here and we won't use your components with some bigger projects coming down the line.
Completed
Last Updated: 25 May 2021 07:36 by ADMIN

I'm submitting a...

  • Bug report

Current behavior

When the Date Inputs or DropDowns are positioned at the bottom of a page, their popup continues to open below the input field. This causes the popup to appear beyond the browser's boundaries, making the users unable to use the popup.

Expected behavior

The position of the popups of the Date inputs and DropDowns should be automatically changed based on the available space below each of the components. If there is not enough space to open the popup below the component's input, the popup should appear above the input.

Minimal reproduction of the problem with instructions

  1. Open this StackBliz example
  2. Click on the "Open in a New Window" button at the right corner
  3. In the opened browser window, scroll to the bottom of the page
  4. Open the popup of the DropDownList
Unplanned
Last Updated: 27 Oct 2023 07:21 by QualiWareUA
Created by: QualiWareUA
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
6

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: 19 Mar 2025 10:54 by ADMIN

I would like to suggest adding a seamless typing feature in the Kendo Vue DateInput component, enabling automatic navigation between each section (day, month, year, hour, minute) without requiring separators or manual navigation.

✳️ Expected Behavior:

When typing a date and/or time, such as 20/04/1997 14:35, the cursor should automatically move to the next segment when the expected number of digits is reached:

For dates:

  • Typing 20 → cursor jumps to month.
  • Typing 04 → cursor jumps to year.
  • Typing 1997→ date completed.

For times:

  • Typing 14 → cursor jumps to minutes.
  • Typing 35 → time completed.

👉 User flow example:

20 -> (day filled, move to month) 04 -> (month filled, move to year) 1997 -> (year filled, move to hour)

14 -> (hour filled, move to minute) 35 -> (minute filled)

This would apply to all DateInput modes:

  • Date only.
  • Time only.
  • DateTime combined.

Current Situation in Kendo Vue DateInput:

  • Manual use of arrows or mouse to move between segments.
  • Need to type separators (/, :, etc.) explicitly.
  • No automatic focus jump when a section is completed.

Requested Feature:

  • A prop to enable/disable automatic segment navigation in DateInput.
  • Applies to both date and time segments, depending on the configured format.

🛑 Why it matters:

  • Faster and more fluid typing experience.
  • Matches native behaviors found in <input type="date">or <input type="time">in many browsers.
  • Important for data-heavy environments (administrative forms, back-office systems, repetitive entry).
  • Accessibility-friendly: reduces the need for manual cursor manipulation.

⚙️ Additional context:

After discussing this with your team, I understand that this behavior is not currently planned and custom implementations are challenging to achieve.
Still, exposing this behavior as an optional prop would allow those who need this fluid UX to benefit from it, without affecting existing users.


Thank you very much for considering this suggestion!

Completed
Last Updated: 9 Feb 2022 07:52 by ADMIN
Created by: TMM
Comments: 2
Category: Drawer
Type: Feature Request
5

Hi,

I'm interested in using Drawer for our project, but the current docs only seem to show that it's natively supported with jQuery. I know I can still use it on my Vue project with lots of jQuery usage, but I just wanted to confirm if Drawer is available or not with a vue wrapper to be able to continue with  my component more elegantly.

And if it does not exist yet, I would like to request a new feature for a Kendo UI Vue wrapper available for the Drawer module.

Cheers,

Mark

Completed
Last Updated: 19 Mar 2020 14:24 by ADMIN

I'm submitting a...

  • Bug report

Current behavior

When defining a custom cell template by defining a new Vue component few Vue warnings appear in the console. Here are the errors:

  • [Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "dataItem"
  • [Vue warn]: $listeners is read-only.

Expected behavior

There should be any errors in the console when defining a cell template using a Vue component.

Minimal reproduction of the problem with instructions

  1. Open this Dojo example
  2. Sort the Grid by any column
  3. See the browser's console

Environment

Package versions: kendo-vue-grid 0.3.7 loaded via CDN

Completed
Last Updated: 23 Jul 2021 08:58 by ADMIN

I'm submitting a...

  • Bug report

Current behavior

The user cannot select a filter operator if the filter input doesn't have entered data.

Expected behavior

The user should be able to pre-select a filter operator no matter if there is data entered in the filter input or not.

Minimal reproduction of the problem with instructions

  1. Open this StackBlitz example
  2. In the Product Name column, I click the filter operator button
  3. Select "Ends with"
  4. Click the filter operator button again and see that "Ends with" is not selected.
  5. Type "g" in the filter text field. Grid updates but doesn't filter the data by "Ends with" filter.
  6. Click the filter operator button and see that "Contains" is selected instead of "Ends with"
  7. Select "Ends with" once more and Grid filters correctly
Planned
Last Updated: 3 May 2022 07:20 by ADMIN
Created by: bhavesh
Comments: 0
Category: DropDownList
Type: Feature Request
5

Currently, the Kendo UI for Vue Native DropDownList doesn't have the valuePrimitive property which is available in the:

Providing such property for the Native Vue DropDownList will be useful in different use-case scenarios. 

Unplanned
Last Updated: 6 Dec 2022 13:06 by ADMIN
Created by: Jef
Comments: 2
Category: Grid
Type: Feature Request
5

With the current implementation of the Native Grid, if one needs to set a minimum width to a column that needs to add the implementation suggested in this Setting a Minimum Column Width example.

While the approach in the above example works as expected, the logic that needs to be added can be internal for the Grid component. Thus the users will have to add a simple column property like the below and no other configuration should be set.

  {
    field: "ProductName",
    title: "Name",
    minWidth: 200
  }

Unplanned
Last Updated: 24 Feb 2023 08:18 by Don

Hello.

I want to request a feature for the Native Editor that is available in Microsoft Word.

I would like to be able to set the cursor on an existing hyperlink, click the Hyperlink tool, and change the display text on the hyperlink. 

This change would also include adding a "Display Text" form field on the hyperlink tool dialog view.

Unplanned
Last Updated: 28 Jul 2023 05:08 by ADMIN

Describe the bug
The behavior of the Native and Wrapper MultiView calendars is different when using the next/previous arrows of the component.

The Native MultivVew calendar changes the selected date to the respective date of the next/prev month but doesn't change the month views as the Wrapper does.

Check the following two videos and see the differences:

Native.Multiview.Calendar-.Vue.mov
Multiview.Calendar.Wrapper.-.Vue.mov

To Reproduce

  1. Open this StackBlitz project
  2. Select a random date
  3. Click on the "next" navigational arrow

Expected behavior
The same as the selected date should be focused on in the next month just like the Wrapper MultuView Calendar does.

Unplanned
Last Updated: 28 May 2024 08:10 by ADMIN

Describe the bug
The Tooltip is not correctly positioned in scenarios where a longer text needs to be displayed. This incorrect positioning leads to the inability to automatically close the Tooltip when the mouse is hovered out of the component.

To Reproduce

  1. Open this CodeSandbox example.
  2. Hover the yellow dot on the right

Expected behavior
The Tooltip should appear correctly positioned above the yellow point as it is in the scenario when you hover the left point in the above example

Screenshots
image

Planned
Last Updated: 3 Sep 2020 04:31 by ADMIN
In the vue native grid, the inputs rendered in the filter row don't have a title or accessible name. This would make it nearly impossible for someone using a screen reader to understand what each field means. In order to comply with WCAG 4.1.2 (Name, Role, Value) please add a title and/or aria-label/labelledby attribute to these inputs. 

The jquery grid has the aria-label and title populated with the column name. I think it'd be even more useful if the label said "Filter by {columnName}".
Completed
Last Updated: 9 Feb 2022 07:26 by ADMIN
Created by: Daniel
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
4
The Editor is one of the most popular components. It will be nice to have it as a Native one.
1 2 3 4 5 6