Unplanned
Last Updated: 16 Apr 2024 07:30 by ADMIN
Scheduled for 2024 Q3 (7.08.2024)
Currently we are using vue-cli-service . It is not longer recommended, because it is in maintenance mode. For new projects , it is now recommended to use create-vue to scaffold Vite-based projects.
Unplanned
Last Updated: 12 Apr 2024 16:52 by Boris
Created by: Boris
Comments: 0
Category: NumericTextBox
Type: Feature Request
1
It would be beneficial to add a selectOnFocus prop to the NumericTextBox, similar to Jquery:  https://docs.telerik.com/kendo-ui/api/javascript/ui/numerictextbox/configuration/selectonfocus 
Unplanned
Last Updated: 08 Apr 2024 12:18 by ADMIN
Created by: Ziggy
Comments: 1
Category: DatePicker
Type: Feature Request
1

Currently, it is not possible to copy and paste dates from one DatePicker to another:

In KendoReact and Kendo UI for Angular this feature is already available:

Video - https://somup.com/cZfeQdCxey 

 

Unplanned
Last Updated: 05 Apr 2024 08:03 by ryo
Created by: ryo
Comments: 0
Category: Chart
Type: Feature Request
2
It would be beneficial if the Kendo UI for Vue had a Native HeatMap chart component
Unplanned
Last Updated: 02 Apr 2024 07:41 by Meenakshi
Created by: Meenakshi
Comments: 0
Category: Grid
Type: Feature Request
1
Currently, if you double-click on the Grid resize handler the cell is not resized to auto-fit. It would be beneficial if auto-sizing was possible
Unplanned
Last Updated: 21 Mar 2024 07:00 by ADMIN

There is a solution in Angular for clearing a multiselect programmatically at Provide a way to pro...~https://feedback.telerik.com/kendo-angular-ui/1404639-provide-a-way-to-programmatically-clear-selected-values-from-multiselect

Is there an equivalent solution for Vue?

Unplanned
Last Updated: 13 Mar 2024 15:25 by ADMIN
Created by: jake
Comments: 1
Category: Pager
Type: Feature Request
1
It would be beneficial if there was a way to disable programmatically the buttons/dropdown in the Pager component
Unplanned
Last Updated: 12 Mar 2024 13:35 by ADMIN
Scheduled for 2024 Q2 (May)

When using both filtering and virtualized dropdownlist, it can sometimes occur that the list will show no items after a series of repro steps:

Stackblitz (modified with only a console.log in the handlePageChange function) from Vue Dropdowns Library & DropDownList Component - Virtualization - Kendo UI for Vue Docs & Demos (telerik.com)

Qsz3dh (forked) - StackBlitz

  1. open dropdown
  2. type 33333 into the filter
  3. see no data found
  4. quickly remove the last 2 3's, so now you're only filtering on 333
  5. quickly scroll down, then quickly scroll up
  6. see no data found and see that skip is NaN in the console
Unplanned
Last Updated: 29 Feb 2024 17:23 by jake
It would be beneficial if there was a mechanism that will highlight a bar chart item on click instead of hover similar to Power BI:

Unplanned
Last Updated: 29 Feb 2024 16:56 by ADMIN
Created by: Akshata
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0

Description: 
MultiSelect does not scroll to the focused item. The problem seems to occur when the text of options extends over multiple lines.  
The option "Congo, the Democratic Republic of the" extends over multiple lines in our example.

 

Here is a "https://stackblitz.com/edit/u4crwa-phh6zx" example. Search for "United" or any country that starts with the letter "H" or after.

Unplanned
Last Updated: 26 Feb 2024 17:25 by ADMIN
Created by: Akshata
Comments: 3
Category: Kendo UI® for Vue
Type: Bug Report
2

Hello Team,

Icon for MS Word is missing the logo which is impacting UX for our application. Appreciate if this is resolved on priority

Reference in the Image: Docx 1. docx

Unplanned
Last Updated: 22 Feb 2024 08:37 by ADMIN
Scheduled for 2024 Q2 (May)
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: 22 Feb 2024 08:20 by ADMIN
Created by: jake
Comments: 3
Category: TileLayout
Type: Feature Request
3

Hello, is there an option for the tile layout to allow the cards inside to be responsive based on size? Specifically on mobile I need them all to to change so they are each displaying on their own row so they can actually be visible.

 

Thank you,

Jake

Unplanned
Last Updated: 16 Feb 2024 13:44 by ADMIN
Created by: Boris
Comments: 6
Category: ComboBox
Type: Bug Report
2

Describe the bug
Combobox does not scroll to focused item

To Reproduce
https://stackblitz.com/edit/u4crwa?file=src%2Fmain.vue

Type v

Expected behavior
Volleyball is scrolled into view

Unplanned
Last Updated: 14 Feb 2024 09:49 by ADMIN
Created by: Joel
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0
This would be a great addition to the chart whenever there is a some click event in the background


we have a tooltip , which is great, but a cursor pointer would be great to let the user know that there is some sort of interaction

Unplanned
Last Updated: 13 Feb 2024 06:54 by ADMIN
Created by: Renatas
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0

Hi,

DataGrid should provide selectionState property for styling in following way:

  • allSelected,
  • partiallySelected,
  • noneSelected

Value is emitted onSelectionChange event.

Currently we need to implement property.

Thank you!

Unplanned
Last Updated: 13 Feb 2024 06:52 by ADMIN
Created by: Renatas
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0

Currently there is selection of row and selection of whole table. There is no group level selection.

We have to implement it ourselves. Not a big deal but still. Same applies to MAUI.

Thank you!

Unplanned
Last Updated: 05 Feb 2024 11:02 by Jerry

Describe the bug
The DateTimePicker component provides the min and max props that allow you to configure specific days and hours restrictions that limit the selection one can make using the component.

Currently, the min and max limitations are applied only for the days and not for the hours meaning that if we define the following:

min: new Date(2022, 2, 1, 8, 30),
max: new Date(2022, 2, 10, 12, 30),

We will be able to select a date between 1st and 10th of March 2022 but we will also be able to select a time that is outside the defined range - for example, 18:30 on 10 March 2022.

To Reproduce

  1. Open this example
  2. Select 10th of March 2022
  3. See the Time view in the popup that allows you to select time that is outside the range of time defined in the max prop

Expected behavior
Based on the definition in the max prop, the Time view in the component's popup should not display the hours and minutes that are not available for selection

Screenshots
image

Unplanned
Last Updated: 05 Feb 2024 09:50 by Pratyusha
Created by: Pratyusha
Comments: 0
Category: MultiSelect
Type: Feature Request
1

In some scenarios, we need to display the selected MultiSelect values as comma-separated values and not as chips.

Currently, the displaying of comma-separated values can be achieved using a custom template similar to this one but providing a property that can configure this behavior out of the box will be a very useful improvement in the component. 

Unplanned
Last Updated: 01 Feb 2024 12:46 by ADMIN
Scheduled for 2024 Q2 (May)

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

1 2 3 4 5 6