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

Unplanned
Last Updated: 17 Aug 2023 09:46 by ADMIN
Created by: Bruno71
Comments: 3
Category: Kendo UI® for Vue
Type: Feature Request
0

Hi,

I would like to offer some suggestions for a few new icons to be added to the Progress Design System.  I am currently trying to replace other libraries with the Kendo UI for Vue components, and these are a few icons I use for which I could not find a suitable replacement in the ones you provide.  Please see the attached image for examples.

  • certificate/award/ribbon
  • thumbs-up/thumbs-down
  • flag

Also, it would be nice to have a "filled-in" version of some of the existing icons.  For example, some current icons like "file-add" or "comment" are good, but they don't stand out at a smaller size.  Having a solid color version (instead of just an outline) would provide options for bolder colors and make them more visible.

Thanks!

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?

    Unplanned
    Last Updated: 18 Sep 2023 11:40 by ADMIN
    Created by: Mark
    Comments: 1
    Category: Kendo UI® for Vue
    Type: Feature Request
    0

    Hi there.

    so the orgChart generates a great organizational hierarchy, but I want to be able to drag and drop elements to other parents like you can do with the Asp.net ajax version of the orgChart.  How do I do this please?

    Unplanned
    Last Updated: 22 Nov 2023 13:05 by ADMIN
    Created by: Zack
    Comments: 1
    Category: Kendo UI® for Vue
    Type: Feature Request
    0

    Hi there,

    We create a dashboard like this:

    We need to export in PDF format and we use the component:

    https://www.telerik.com/kendo-vue-ui/components/pdf-processing/

    Now we need to export in PNG or JPG format.

    And this is our request: a Kendo Component that exports a dashboard with the same quality of the PDF component.

    Thanks in advance.

    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

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

    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.

    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>
    

    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.

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