Won't Fix
Last Updated: 08 Sep 2022 15:34 by ADMIN
Created by: Chad
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0

Vue Version: 3.2.37

@progress/kendo-vue-layout version: 3.5.1

When using TabStrip in Vue 3 with the Composition API and `<script setup>`, there cannot be anything inside of the TabStrip other than visible markup. If there is an HTMLnode that's a comment, or is hidden using a `v-if,`, then that part of the page will not render and throw an error.

<TabStrip v-if="ctrOrSar !== 'Loading...'" :selected="selected" @select="onSelect">
    <TabStripTab title="Tab">
       Not a problem

    </TabStripTab>

 

    <TabStripTab v-if="false">
      big problem

    </TabStripTab>

<!-- <TabStripTab v-if="false" >
       Also a problem
    </TabStripTab> -->
</TabStrip>

This is the error received:
"`Uncaught (in promise) TypeError: children.forEach is not a function`" quoting a utils.js file line 4.

If my TabStripTabs have a v-if on them to not show if data isn't available for them, then the whole section of the page isn't useable.

Won't Fix
Last Updated: 09 Feb 2022 09:16 by ADMIN

In a scenario when a mouse is connected to an iPad, using the mouse, we cannot switch the states of the Switch component.
If the screen is touched, the Switch is correctly switching position.

Here is a video demonstrating the issue:
kendoswitch-rpreplay-final1635815724-mp4.zip

Won't Fix
Last Updated: 14 Dec 2021 07:22 by ADMIN

I try to apply Telerik Scheduler, @progress/kendo-scheduler-vue-wrapper": "^2021.3.110,  in my Vue3 project with Vite but I got an error message, "Dynamic require of kendo.pdf.js is not supported", in the browser console and no calendar show in the web page.


Won't Fix
Last Updated: 06 Oct 2020 05:44 by ADMIN
Created by: devdutt
Comments: 1
Category: Grid
Type: Bug Report
0

Hi Team,

I'm using the export excel feature in the grid. When I'm trying to download data less record( < 3k) it's working fine, but this becomes problematic when I'm trying to download huge data (more than 10k) my browser hangs and after some time browser crash. Do let me know any solution regarding this issue.

Won't Fix
Last Updated: 29 Sep 2020 13:31 by ADMIN
Created by: lingfeng
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0
Won't Fix
Last Updated: 29 Sep 2020 07:23 by ADMIN

I'm submitting a...

  • Bug report

Current behavior

When there is a custom cell template applied to a column in the Grid(Native), using the grouping functionality breaks Grid's layout

Expected behavior

The Grid's layout shouldn't be affected if we apply a custom cell template

Minimal reproduction of the problem with instructions

  1. Open this StackBlitz project
  2. See that the values in the ProductName column are bolded, but Grid's layout is broken
  3. Remove the cell template definition on line 54 by removing the cell property.
  4. Run the project again and see how if we don't apply a cell template, Grid's layout is being displayed correctly

Environment

Package versions:

2019.2.621

Browser:
All

Won't Fix
Last Updated: 24 Sep 2020 07:58 by ADMIN
Created by: sangwon
Comments: 2
Category: Kendo UI® for Vue
Type: Bug Report
0
How can i set visible for custom command?