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: 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

Completed
Last Updated: 23 Feb 2024 13:10 by ADMIN
Created by: Akshata
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
2

Hello Team

Selection/Highlight of the Main Menu is incorrect, when the child item of different submenu is chosen. This is UI/UX glitch and would helpful if resolved

Code Snippet : https://stackblitz.com/edit/nrqsrn?file=src%2Fmain.js

Completed
Last Updated: 06 Feb 2024 14:32 by ADMIN
Created by: Charles
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
1

Describe the bug
The @progress/kendo-licensing is missing as peer to data-tools package

Completed
Last Updated: 06 Feb 2024 14:31 by ADMIN
Created by: Charles
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
1

The following packages should be added as peer dependencies to the @progress/kendo-vue-data-tools package:

  • "@progress/kendo-svg-icons"
  • "@progress/kendo-vue-popup"
  • "@progress/kendo-vue-animation"
Completed
Last Updated: 18 Dec 2023 12:45 by ADMIN
Created by: Bastien
Comments: 4
Category: Kendo UI® for Vue
Type: Bug Report
0

Describe the bug
The following error appears when activating the license of the Native Vue suite with Node 21.3.0
image

To Reproduce

  1. Install node 21.3.0
  2. Run npx kendo-ui-license activate
  3. See the unsuccessful activation error

Expected behavior
The license activation should work with all Node versions

Planned
Last Updated: 25 Sep 2023 00:50 by Eunbyul
Created by: Eunbyul
Comments: 9
Category: Kendo UI® for Vue
Type: Bug Report
0

Describe the bug

at Nuxt Environment

 - pagable info option doesn't render information about the current page and the total number of records (both of setting true / false, all)

-  set pageable info option false, error raise like this.


To Reproduce

    - https://stackblitz.com/edit/nuxt-starter-mcocsr

    Expected behavior
    - render information about the current page and the total number of records
    - do not error raise

     

    Unplanned
    Last Updated: 13 Sep 2023 12:42 by ADMIN

    Hello,

    I noticed a bug with the Tooltip component, it can be reproduced here: https://www.telerik.com/kendo-vue-ui/components/tooltip/positioning/

    1. Hover where it says HOVER ME until the tooltip shows up
    2. Move the mouse up very quickly. When the mouseout event is over the tooltip, the tooltip does not close -> NOK, the tooltip is open, but the mouse is no longer over the element

    In Tooltip.js there is a function called "handleMouseOut" that has this line:

    const element = currentDocument && currentDocument.elementFromPoint(event.clientX, event.clientY);

    Followed by:

    if (isTooltipElement(element) || this.computedTarget !== event.target) {
      return;
    }

    So when the mouseOut event is over the tooltip element, it is ignored, leaving the tooltip visible.

    I was able to fix this by adding the following CSS styling to the tooltip element: `pointer-events: none;`, but now I may have introduced a new issue.

    What is the reason for ignoring the mouseout event when it's over the tooltip?

    Completed
    Last Updated: 12 Jul 2023 07:54 by ADMIN
    Created by: Eunbyul
    Comments: 3
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    Hello. I found a Bug on PanelBar Component at Nuxt3 environment, so I wrote a ticket.

    When I click <PanelBar/> component's  item the following image error occurs. the component does not work properly.

    (I wrote a component as it is Kendo UI for Vue Native PanelBar Overview Page)

     

    Please Check this once.


    stackblitz (PanelBar Test on Nuxt3 Demo): https://stackblitz.com/edit/nuxt-starter-rsgcyn

     

    ps. I checked out that the bug doesn't occur in the Vue3 environment.

    stackblitz (PanelBar Test on Vue3 Demo): https://stackblitz.com/edit/vitejs-vite-afatj1

    Completed
    Last Updated: 20 Jun 2023 13:50 by ADMIN
    Created by: Amy
    Comments: 3
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    When providing the input prop ariaLabelledBy, the resulting rendered element has an attribute of arialabelledby instead of aria-labelledby.

    That is, this code:

    <span id="my-input-label">My Input Label</span>
    <Input aria-labelled-by="my-input-label" />

    results in this HTML:

    <span data-v-0b8cedaa="" id="my-input-label">My Input Label</span>
    <span data-v-0b8cedaa="" class="k-textbox k-input k-input-md k-input-solid k-rounded-md k-required">
      <input id="58c2f77d-91e5-444a-a948-90f4abb960e5" required="" arialabelledby="subject-label" class="k-input-inner">
    </span>

    But the input's HTML should instead look like:

    <input id="58c2f77d-91e5-444a-a948-90f4abb960e5" required="" aria-labelledby="subject-label" class="k-input-inner">

    Completed
    Last Updated: 12 Jun 2023 06:37 by ADMIN
    Created by: jake
    Comments: 0
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    New Native Vue DropDownTree Component

    Completed
    Last Updated: 18 Apr 2023 05:25 by ADMIN

    Describe the bug
    When using a slot to define the columns in the Wrapper Grid, the result in Vue 2 and Vue 3 is different.

    • In Vue 2, if we pass 2 columns to the slot, only these two columns are rendered in the component.
    • In Vue 3, no matter how many columns we pass to the slot, the component renders all columns, based on the data in the datasource

    To Reproduce
    Check the two examples below:

    The two examples use the same implementation but the number of columns rendered in each Grid is different

    Expected behavior
    The two examples should work the same way as in the Vue 2 application.

    Screenshots
    Vue 2:
    image
    Vue 3:
    image

    Unplanned
    Last Updated: 05 Apr 2023 14:19 by Eliot
    Created by: Eliot
    Comments: 0
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    Describe the bug
    Importing Kendo UI components results in our WebPack build producing the incorrect "dist" output.
    Sometimes Webpack build adds additionalType.d.ts files and their directories to the dist folder
    More information can be found in ticket:1602899

    Completed
    Last Updated: 28 Mar 2023 16:08 by ADMIN
    Release R2 2023 - Increment 2 (12.04.2023)
    Created by: Ako
    Comments: 5
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    Kendo Splitter component `change` event is triggered from child components e.g. Input/Grid. I have multiple splitters defined, but only parent splitter has `onChange` event listener defined. When changing the text from child containing Kendo Input component which has no change event defined (doesn't really matter if it is), the event is propagated to Splitters `onChange` event and crashes Splitter pane handling. Added `onChange` listener to other Splitters as-well, they all are triggered. Clicking on Grid component checkboxes (is child to Splitter) to select the row will also trigger Splitters `onChange` event. Current workaround is to defined Splitters `@change` event as `@change.self` then the children's `change` events wont trigger it.

    Completed
    Last Updated: 25 Jan 2023 15:36 by ADMIN
    Release R2 2023 - Increment 1 (01.03.2023)
    Created by: n/a
    Comments: 0
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    Describe the bug
    There is an incorrect export inside the @progress/kendo-vue-inputs package on line 39 in the @progress/kendo-vue-inputs/dist/esm/main.js file

    image
    This import fails because this file does not exist. When we change the above line to:
    export * from './signature/interfaces/index.js'; everything works as expected.

    A similar issue is found in the following file: @progress/kendo-vue-inputs/dist/esm/signature/Signature.js on line 145
    image
    The above should be changed to:
    import { hasParent } from './utils/index.js';

    Expected behavior
    The described above exports should point to existing files

    Duplicated
    Last Updated: 18 Jan 2023 13:12 by ADMIN
    Created by: Sanatan
    Comments: 0
    Category: Kendo UI® for Vue
    Type: Bug Report
    0

    @open and @close events are not triggered by integration testing tool, even when programmatically calling the event.

    We are using cypress 11.1.0

    cypress-real-events: 1.7.4 was also used to try of trigger the events but didn't work.

    The way we tried this was:

    cy.get(element).trigger(‘mouseover’)
    cy.get(element).realHover()
    cy.get(element).trigger(‘mouseover’)
    cy.get(element).trigger(‘mouseenter’)
    cy.get(element).then(el => {
        el.dispatchEvent(new MouseEvent(‘mouseenter’, { bubbles:true })
    }
    But the events are just not triggered, so we cannot properly test our implementation.
    1 2 3