Under Review
Last Updated: 23 Oct 2024 12:30 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: 09 Oct 2024 10:27 by ADMIN
Created by: Robert
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0
Requesting the addition of the OrgChart component to Kendo Vue (it's currently available for Kendo UI and React).
Unplanned
Last Updated: 06 Oct 2024 22:16 by ADMIN
Created by: Philip
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
0
It would be beneficial if the Upload component had chunk upload support.
Unplanned
Last Updated: 26 Sep 2024 08:53 by Jorge
Created by: Jorge
Comments: 0
Category: Scheduler
Type: Feature Request
1
It would be beneficial if we had an @edit event similar to the wrapper components
Declined
Last Updated: 18 Sep 2024 10:16 by ADMIN
Created by: Laura
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0

Describe the bug

When the Datepicker component is used with a custom calendar (Kendo Calendar component) the calendar does not close on click outside of the component

To Reproduce

1. Open this StackBlitz example - https://codesandbox.io/p/sandbox/festive-tesla-hm596x 
2. Click on the Datepicker input to open the component
3. Click outside the Calendar component

Expected behavior
The DatePicker's calendar popup should close when the user clicks outside the component

Unplanned
Last Updated: 13 Sep 2024 10:37 by Liam
It would be beneficial if we had a prop that sets validation icon to be shown in the icon or label. 
Unplanned
Last Updated: 20 Aug 2024 06:55 by
Created by:
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
1
I would like to use a different font-family in the exported content of the Editor in a PDF file. Please, add a customization option with what I can achieve this. 
Unplanned
Last Updated: 15 Aug 2024 09:42 by ADMIN
Scheduled for 2024 Q4 (Nov)
Created by: Pete
Comments: 0
Category: DropDownList
Type: Feature Request
1

The change event of the DropDownList is emitted when navigating between DropDownList options using the keyboard. 

The DropDownList should have a select event like it is in other Kendo UI suites and this select event should be emitted when using the keyboard with an expanded popup. Once a value is selected with, for example, click or 'Enter' press, then the change event should be triggered.

Unplanned
Last Updated: 14 Aug 2024 13:02 by ADMIN
Scheduled for 2024 Q4 (Nov)

Describe the bug
When we have a Chart Tooltip in the Native Vue Chart and this Tooltip appears over the Chart itself, if we hover the Tooltip it starts to flicker.

To Reproduce

  1. Open this StackBlitz example
  2. Hover random series to display the ToolTip
  3. Move the mouse cursor over the ToolTip

Expected behavior
The Tooltip of the Native Chart should not flicker when moving the mouse cursor over it.

  • Possible workaround is to use the following CSS definition:
.k-animation-container.k-chart-tooltip-wrapper {
  pointer-events: none;
}
Unplanned
Last Updated: 14 Aug 2024 12:57 by ADMIN
Scheduled for 2024 Q4 (Nov)

Describe the bug
If you try to group the data in a Grid by a column that has a value of "null", the browser hangs, and an error appears in the console.

To Reproduce

  1. Open this StackBlitz example
  2. Group the Grid by "Unit Price" field

Expected behavior
The data should be grouped according to the values inside the UnitPrice column. A column with an empty header should appear for the group with a "null" value.

Screenshots
image

Workaround

Convert the "null" values to empty string with a code like this:
this.products.forEach((o) => { o.UnitPrice = o.UnitPrice === null ? '' : o.UnitPrice; });
Here is a modified example in which the above code is added to the getData method.

Unplanned
Last Updated: 13 Aug 2024 15:46 by Tarik
Created by: Tarik
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
1
Currently locking a column does not work with a detail component. It would be beneficial if it worked for the expand/child row as well.
Unplanned
Last Updated: 02 Aug 2024 15:21 by Paul
Created by: Paul
Comments: 0
Category: NumericTextBox
Type: Feature Request
1
It would be beneficial if there was a prop that would disable the wheel from selecting a value in the NumericTextBox
Unplanned
Last Updated: 07 Jun 2024 15:20 by ADMIN
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.
Planned
Last Updated: 03 Jun 2024 14:02 by ADMIN

The problem occurs only on a component DropdownTree in which the filtering fonctionality is enable.

I have this problem when testing on Chrome and Firefox.

Unplanned
Last Updated: 30 May 2024 15:48 by Henrik

Describe the bug
The selectionChange & headerselectionchange events of the Native Grid component are unexpectedly triggered when filtering data in the component.

  • The issue is not replicable on Chrome and Safari.

  • A possible workaround for the bug is demonstrated in this StackBlitz example

To Reproduce

  1. Open this StackBlitz project in Firefox
  2. Enter random text in the filter input of some of the fields
  3. See the following two errors in the console:

image
and
image

Expected behavior
No JS errors should appear when filtering the Grid component, no matter the browser that is used.

Unplanned
Last Updated: 28 May 2024 15:24 by Leigh

Describe the bug
The MultiSelect component throws a console error when a text value is entered in its input and the component is used as a part of the Native Form.

The issue is replicable only when a text is entered in the component's input. Everything works as expected if a value is selected from the MultiSelect's popup list.

To Reproduce

  1. Open this StackBlitz example
  2. Enter random text in the MultiSelect's input
  3. Open the browser's console and see the following error
image

Expected behavior
No errors should appear in the browser's console when using the MultiSelect component as a part of the Form component, no matter the specific configuration of the MultiSelect.

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

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

Describe the bug

The events displayed inside a Timeline view are not fully expanded to the time boundaries of the slots available in the view. Events that are 30 minutes long are displayed like something around 20 minutes in length.

To Reproduce

  1. Open this StackBlitz example
  2. Check the way the 'Website upload' event is displayed

Expected behavior
The 'Website upload' event should be displayed inside two 15 minute slots

Screenshots
image

Unplanned
Last Updated: 23 May 2024 15:23 by ADMIN

The data tools kfilter component uses a DropDownList component to list the fields available for building a query. It looks like there is no way to apply the :filterable prop to the DropDownList that allows a user to type inside the list in order to filter down the list. This is especially useful if you have hundreds of fields in your dropdown. Instead a user must scroll through the entire list to find the field they are looking for.

We also use this component in our older web forms application and this functionality is available in the old component.  I would suggest allowing the :filterable prop to be applied to the kfilter component which would be passed down to the child DropDownList component.

Unplanned
Last Updated: 16 May 2024 09:11 by ADMIN

Hi Team,

How to show loading spinner for Schedular control when we changing the views (from day view to week view).

I am not able to find any props like loader or no-data-template.

Please help me on this.

 

Thanks,

Lingaraju

1 2 3 4 5 6