Pending Review
Last Updated: 10 May 2024 11:47 by Jamie

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: 10 May 2024 09:03 by Lucía
Created by: Lucía
Comments: 0
Category: Editor
Type: Feature Request
1
Currently, the Editor tools are not very responsive because the width and height are set to fixed values. It would be beneficial if they where made more responsive.
Unplanned
Last Updated: 09 May 2024 20:57 by ADMIN
Scheduled for 2024 Q3 (Aug)

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: 09 May 2024 20:51 by ADMIN

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

Unplanned
Last Updated: 08 May 2024 13:53 by Brad
Created by: Brad
Comments: 0
Category: Grid
Type: Feature Request
1

It would be beneficial if the Kendo UI for Vue ColumnMenu had an option to display the visible columns as it is in Kendo UI for Jquery, instead of creating a custom columnMenu:

https://demos.telerik.com/kendo-ui/grid/column-menu

Unplanned
Last Updated: 25 Apr 2024 13:04 by ADMIN

Hello,

When working in Spanish or French, even if internationalization is properly configured, it is not possible to translate the items in the FormatBlock, so it is only possible to see them in English.

We tried to do it ourselves (https://www.telerik.com/forums/paragraph-and-heading-not-translated) but we found some issues, so please, consider including these few items in the default translations. 


Thanks

LucĂ­a

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
Completed
Last Updated: 26 Mar 2024 13:33 by ADMIN
Created by: Ha Minh Nguyet
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0

Hello, 
Drag and drop an image inside editor isn't working in Chrome. 
sometimes the images is opened in new tab, sometimes the image path is added. 

However, it works on Firefox.

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?

Declined
Last Updated: 20 Mar 2024 12:22 by ADMIN
Hello,
 clear Button isn't shown when attribute showClearButton is 'true'.
<template>
  <div>
    <div class="col-xs-12 col-md-6 example-col">
      <p>Input</p>
      <KInput :style="{ width: '330px' }" :show-clear-button="true"></KInput>
    </div>
  </div>
</template>
<script>
import { Input } from '@progress/kendo-vue-inputs';

export default {
  components: {
    KInput: Input,
  },
};
</script>

Declined
Last Updated: 19 Mar 2024 12:51 by ADMIN

Hi

I have a Grid inside a TabStrip. Resizable is set to true. If I resize the column, the column will change size but at the same time the width of the Grid will also change size proportional to the change in size of the column.

If I move the Grid to be outside of the TabStrip, resizing the column will not alter the width of the Grid. This is the behaviour I was expecting.

Here is some sample code that reproduces the issue.

<TabStrip :selected="0" :tabs="[
	{
		title: 'Paris',
		content: 'Paris',
	}]">
	<template v-slot:Paris>
		<Grid ref="grid" :style="{ 'max-height': '600px' }" :data-items="variations" :resizable="true"
			:reorderable="false" :columns="caseGridColumns" :loader="loader"
			@rowclick="(ev) => { caseStore.setCaseId(ev.dataItem.cases.caseid); getData(); }">
			<GridNoRecords>
				No variations were found
			</GridNoRecords>
		</Grid>
	</template>
</TabStrip>

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
Completed
Last Updated: 05 Mar 2024 06:23 by ADMIN
Release 2024 Q2 (May)
Created by: n/a
Comments: 0
Category: Scheduler
Type: Bug Report
0

Describe the bug
some of the template props are not available in the slot template

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

Expected behavior
props.start is available in the slot

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.

1 2 3 4 5 6