Unplanned
Last Updated: 24 May 2023 11:04 by yuki

When I try to drag or scale a tile, a line is displayed to indicate where it can be placed (red line in the image)
Can you add an option that configures the visibility of the split grid lines (dividing columns)? (Image blue)

Unplanned
Last Updated: 18 May 2023 11:13 by Vincent
Created by: Vincent
Comments: 0
Category: DatePicker
Type: Feature Request
0

The design available in the Kendo UI for Vue Native DatePicker is different from the popup of the KendoReact DatePicker. 

Can you provide KendoReact's DatePicker design in Vue? Here is a screenshot of what I need:

Unplanned
Last Updated: 11 May 2023 06:53 by Peili
Created by: Peili
Comments: 0
Category: Chart
Type: Feature Request
1

The current implementation of the Native Chart component doesn't provide the option to define the position of the tooltip when using crosshairs in the component.

Can you add a configuration option similar to categoryAxis.crosshair.tooltip.positionwhich is available in the jQuery suite?

Unplanned
Last Updated: 03 May 2023 07:18 by Alex

The current implementation of the TileLayout component doesn't provide some details inside the reposition event that could be useful when working on more specific scenarios like swapping the position of two tiles without moving the others. 

If we know which is the dragged tile and its current position in the TileLayout's matrix + the current tile over which the dragged tile is currently positioned, through the reposition event, we can reorder the tiles the way we need them. 

Unplanned
Last Updated: 25 Apr 2023 16:10 by Abdurrahman

The current implementation of the Native Menu component doesn't provide some configuration options that are available in the Kendo UI for Angular suite. 

Can you add the following configurations of the openOnClick property as it is available in the Angular suite

  • "leave"—The items open on hover until either an item is selected, or the mouse pointer leaves the Menu and the predefined delay passes.
  • "click"—The items open on hover but do not close when the mouse pointer leaves the Menu. To close the items and avoid opening the Menu on hover, the user has to click a random place on the page.

Unplanned
Last Updated: 13 Apr 2023 14:10 by ADMIN

If the Grid is initialized with no items, the first call to resetTableWidth as part of the initialization sets the width style on the k-grid-table to 0px.

If any items are added afterwards this style remains, even though the autogenerated columns have a greater width. This leads to the grid not being visible until its size is set manually.

Sample (Grid demo with column definitions removed and changed load the data after mount instead of after creation): https://codesandbox.io/s/late-hill-rkdhc5?file=/src/Grid.vue

Unplanned
Last Updated: 05 Apr 2023 13:08 by Natalie
Created by: Natalie
Comments: 0
Category: AutoComplete
Type: Feature Request
1
Currently Kendo UI for Vue Native AutoComplete does not support virtualization yet there are lots of scenarios where it is needed as well.  
Unplanned
Last Updated: 04 Apr 2023 07:07 by Ryan
Created by: Ryan
Comments: 0
Category: Grid
Type: Feature Request
1

Add groupHeaderColumnTemplate, as in Kendo jQuery Grid and Kendo Vue Wrapper Grid, that can be applied as it is done in this demo https://demos.telerik.com/kendo-ui/grid/aggregates.

 

Completed
Last Updated: 29 Mar 2023 08:54 by Andreas
Release R2 2023 - Increment 2 (12.04.2023)
Created by: Ben
Comments: 3
Category: Kendo UI® for Vue
Type: Feature Request
1

The DatePicker, DateTimePicker, TimePicker, and DateRangePicker components don't provide open and close events that are triggered when the popup of a component is opened/closed. 

 

Unplanned
Last Updated: 28 Mar 2023 08:33 by ADMIN

The Upload component has the option to configure it to accept single or multiple files for upload. 

When the component is configured to accept only one file, the text in its Select button should be in singular form - "Select file..." instead of "Select files..."

Completed
Last Updated: 22 Mar 2023 14:02 by ADMIN

Hey there!

It would be great to add an option to the <Grid /> component that allows specifying a custom cell template specifically for the "select" column.
Looking at the documentation, there is an example that shows how to do something similar, but it overrides the complete CellRenderer for all columns.

Here is a minimum example of the API we could have:

<script lang="ts" setup>
  import { Grid } from '@progress/kendo-vue-grid';
</script>

<template>
  <Grid
    selected-field="selectedField"
    selected-cell="mySelectCell"
  >
    <template #mySelectCell="{ props }">
      <!-- Checkbox or whatever you want -->
    </template>
  </Grid>
</template>


Unplanned
Last Updated: 20 Mar 2023 12:56 by Luca Galbiati
Created by: Luca Galbiati
Comments: 0
Category: Dialog
Type: Feature Request
0

The current implementation of the Native Dialog and Native Window doesn't provide the option to display the two components with an animation.

Providing the option to add animation to the Dialog and Window will be a nice feature for both components. This option can be added either through a direct property configuration or in a combination with the Animation component. 

Completed
Last Updated: 17 Mar 2023 10:27 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)

Hello,

The StackLayout component is available in other Kendo UI suites like KendoReact for example but is still not provided for Vue. Can you add the StackLayout component to the Kendo UI for Vue Native suite?

Completed
Last Updated: 17 Mar 2023 10:25 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)

Hello,

The GridLayout component is available in other Kendo UI suites like KendoReact for example but is still not provided for Vue. Can you add the GridLayout component to the Kendo UI for Vue Native suite?

Unplanned
Last Updated: 17 Mar 2023 08:11 by ADMIN
Created by: n/a
Comments: 1
Category: Editor
Type: Feature Request
0

Add ability to specify the tag which will be inserted when the Enter key is pressed (e.g., p, br, div, etc.).

Unplanned
Last Updated: 15 Mar 2023 14:11 by Kenji

The current implementation of the Native Vue Grid doesn't provide an option to control the visibility of the column menu in each component column. 

Providing a property that can control the visibility of the different column menus will be very useful in scenarios when we want to create a customized column menu that contains a component with a popup. With the current implementation of the component, if we for example add a DatePicker to the column menu, the opening of the DatePicker's calendar triggers the closing of the column menu. Having a prop that controls the visibility of the column menu we can easily handle the described scenario. 

Completed
Last Updated: 13 Mar 2023 13:43 by ADMIN
Created by: Ron
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1
The ScrollView provides one of the fundamental UI experience blocks on mobile apps - would like to see a wrapper implemented for Kendo UI for Vue to add support for it.
Unplanned
Last Updated: 13 Mar 2023 12:43 by Pete

In a scenario where we want to use the Drawer as a navigational component, the best solution from an accessibility perspective would be to add role="navigation" to the Drawer's items and role="main" to the Drawer's content.

The current implementation of the Drawer provides the option to define the discussed role for its content using the following code:

<DrawerContent role="main">
  <router-view />
</DrawerContent>

In the current implementation of the Drawer, the only way we can define a role for its items is through a Javascript code like the following one.

document
  .querySelector('.k-widget.k-drawer')
  .setAttribute('role', 'navigation');

Providing a way to configure the role of the Drawer's items will be a useful feature for the component.

 

 

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: 03 Feb 2023 17:53 by Jose
Created by: Jose
Comments: 0
Category: DropDownButton
Type: Feature Request
1
The DropDownButton should support aria-label configuration through the `kendo-vue-intl` package. Currently, the value for the aria-label is set through the `text` prop and a hardcoded `dropdownbutton` word to it.
1 2 3 4 5 6