Completed
Last Updated: 11 Oct 2022 15:36 by ADMIN
Created by: John Campion
Comments: 6
Category: Kendo UI® for Vue
Type: Feature Request
1

Hi,

I'm trying to figure out how to persist and restore state in the native Vue grid.  Am I missing something; is this not available yet?

I found the article about doing it with the grid wrappers, but not native.

Thanks!

Completed
Last Updated: 21 Jun 2021 07:20 by ADMIN

I'm submitting a Bug report

Current behavior

<chart :title-text="'Gross domestic product growth /GDP annual %/'" 
        :legend-position="'bottom'"
        :series-defaults-type="'area'"
        :category-axis-categories="categoryAxisData"
        :category-axis-major-grid-lines-visible="false"
        :category-axis-labels-rotation="'auto'"
        :value-axis-labels-format="'{0}%'"
        :value-axis-line-visible="false"
        :value-axis-axis-crossing-value="-10"
        :tooltip-visible="true"
        :tooltip-format="'{0}%'"
        :tooltip-template="tooltipTemplate"
        :theme="'sass'">
    <chart-series-item :name="'India'"
                        :data="indiaData"
                        :line-style="'smooth'">
    </chart-series-item>
    <chart-series-item :name="'World'"
                        :data="worldData"
                        :line-style="'smooth'">
    </chart-series-item>
    <chart-series-item :name="'Haiti'"
                        :data="haitiData"
                        :line-style="'smooth'">
    </chart-series-item>
</chart>

When using the ChartSeriesItem tags to define the data in the Chart component the following error appears in the console once the Vue project is started.
image

Expected behavior

<chart-series-item :name="'India'"
                        :data="indiaData"
                        :line-style="'smooth'">
    </chart-series-item>
    <chart-series-item :name="'World'"
                        :data="worldData"
                        :line-style="'smooth'">
    </chart-series-item>
    <chart-series-item :name="'Haiti'"
                        :data="haitiData"
                        :line-style="'smooth'">
    </chart-series-item>

Using a definition like the above, we should be able to define Chart's data with no issues.

Minimal reproduction of the problem with instructions

  1. Open this project
  2. In the console run "npm install"
  3. In the console run "npm run serve"
  4. Open the URL of the project and see the browser's console
Completed
Last Updated: 09 Dec 2020 09:38 by ADMIN
Created by: Hammy
Comments: 4
Category: Kendo UI® for Vue
Type: Feature Request
1

When using native vue gird component often have to open modal windows to show details usually when a particular cell in the grid is clicked and do show modal windows have to use non-native <kendo-window> inside a vue component not happy with mixing jquery based wrappers inside a vue component and this is not ideal. I have explored using native vue popup component but it's not up there to offer what widows component is offering.

Please can a native vue component be developed that we in KendoWindow implementation?

Also, I did not find any example, where a kendo grid component is utilising a window component to open a modal window to show another detailed view of a selected cell from a gird (see an example UI of a grid).

Kind regards

Hammy Babar

 

Completed
Last Updated: 24 Sep 2020 08:48 by ADMIN
Created by: Brian
Comments: 2
Category: Kendo UI® for Vue
Type: Feature Request
1
Our front end team went through several frameworks before settling on Vue and nuxt.  From what I have been reading, nuxt is beginning to take off as a way to implement server side rendering of Vue.  It would be great if nuxt integration support were added to the Kendo Vue wrappers (or as a separate package if that makes more sense).
Completed
Last Updated: 25 Sep 2020 00:03 by Zoran
Created by: Zoran
Comments: 3
Category: Kendo UI® for Vue
Type: Bug Report
1

Stackblitz example.

The Spreadsheet options are logged in the console in the mounted function. Note that pdf.proxyURL and excel.proxyURL have no values.

Completed
Last Updated: 13 Mar 2023 13:43 by ADMIN
Created by: Ron
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1
The ScrollView provides one of the fundamental UI experience blocks on mobile apps - would like to see a wrapper implemented for Kendo UI for Vue to add support for it.
Completed
Last Updated: 24 Sep 2020 08:13 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1
I'm using Kendo UI with Vue wrappers. I have a grid that feeds from a remote datasource, but I have a custom implementation for the data service (using Axios). Currently, Kendo requires me to do this:
```
          <kendo-datasource ref="datasource" :data="rowData"></kendo-datasource>
          <kendo-grid :data-source-ref="'datasource'">
            <kendo-grid-column v-for="columnDef in columnDefs" :key="columnDef.field"
              :field="columnDef.field"
              :title="columnDef.headerName">
            </kendo-grid-column>
          </kendo-grid>
```

It seems like extra boiler plate to require the separate <kendo-datasource> tag. Why can't I bind my `rowData` directly to the kendo-grid?
Completed
Last Updated: 24 Sep 2020 08:16 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1
Please extend Vue.js Grid Component with DetailTemplate like in AngularJS.

The Detail View of the Grid is very useful in combination with subcomponents, as I did always with AngularJS k-detail-template directive. By giving parameters to it it can be used really powerful.

I would like to use the same in Vue.js

Without the implementation of detail template as component or directive (But via script tag reference in options) no vue component is rendered inside.

Completed
Last Updated: 20 Sep 2021 05:52 by ADMIN
Created by: Al
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0

The Kendo UI for Vue Scheduler Wrapper doesn't support year view which is available in the jQuery suite.

To reproduce the issue follow the below steps:

  1. Open this StackBlitz example
  2. From the DropDownList in the upper right corner select "Year"
  3. Check the console. The following error appears in it:
    image

Expected behavior
The "Year" view should be available in the Kendo UI for Vue Scheduler Wrapper

Completed
Last Updated: 10 Sep 2021 13:53 by ADMIN

The Native NumericTextBox doesn't have the 'k-state-focused' class applied to it, once the component is focused. 

For comparison, the Angular and React versions of the same component get this class applied.

React: https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox/ 

Angular: https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/ 

Completed
Last Updated: 23 May 2022 14:39 by ADMIN
Release R3 I1 June 2022

Bug report:
https://stackblitz.com/edit/bbuqh1?file=src/main.vue

Steps:
Focus the input, type some text and blur -

Current:
an warning is observed in the console and the types string is passed to the change event.

Expected:
an warning is observed in the console and the types string SHOULD NOT BE passed to the change event.

Completed
Last Updated: 07 Jun 2022 13:03 by ADMIN
Created by: Xander
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0
Currently, the Kendo UI for Vue suite has only a ToolTip Wrapper component.

It would be nice if we can see a native version of the component.
Completed
Last Updated: 04 May 2022 05:17 by ADMIN
Created by: john
Comments: 4
Category: Kendo UI® for Vue
Type: Feature Request
0
All of the Vue Native component documentation assumes Vue 2. Vue 3 has a different configuration and the component names are sometimes different. Working with Vue 3 has been painful trial and error.
Completed
Last Updated: 20 Apr 2022 05:08 by ADMIN
Release May 2022
Created by: Andreas
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
0

https://stackblitz.com/edit/gv4uwk?file=src/main.vue

Focus the initial input then press tab
the stepper is focused yet it does not change visually so we know it

expected:
There is a visual initial representation of the focused component

Completed
Last Updated: 09 Feb 2022 08:48 by ADMIN

Describe the bug

When the Localization and Intl Providers are used in Vue 2 with Composition API, there is an error in the browser's console that appears initially, before any user interaction. The error is "[Vue warn]: Error in data(): "TypeError: ref is not a function"". After this error appears, no matter what values are passed to both the Localization and Intl components, the are not functioning.

To Reproduce

  1. Open this CodeSandbox example
  2. Open the browser's console and see the error.

Expected behavior
The Localization and Intl Providers should work correctly in both options and composition API contexts

Screenshots
image

Completed
Last Updated: 02 Apr 2020 15:52 by ADMIN
Created by: Steven
Comments: 3
Category: Kendo UI® for Vue
Type: Bug Report
0

Type in the Currency field in the example page here https://www.telerik.com/kendo-vue-ui/components/inputs/numerictextbox/formats/

 

After typing in the third digit, caret position moves to the 2nd digit instead of the first or last digit.

Typing in more digits causes the caret to move a position up occasionally.

 

Caret needs to be consistent on its positioning, either staying in the far left, or to the right before the decimal.

Preferably, this should be a prop to configure.

 

Also, tabbing out of the field when there are more than 2 decimal places will not format on leave.

Completed
Last Updated: 17 Mar 2023 10:27 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)

Hello,

The StackLayout component is available in other Kendo UI suites like KendoReact for example but is still not provided for Vue. Can you add the StackLayout component to the Kendo UI for Vue Native suite?

Completed
Last Updated: 17 Mar 2023 10:25 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)

Hello,

The GridLayout component is available in other Kendo UI suites like KendoReact for example but is still not provided for Vue. Can you add the GridLayout component to the Kendo UI for Vue Native suite?

Completed
Last Updated: 22 Mar 2023 14:02 by ADMIN

Hey there!

It would be great to add an option to the <Grid /> component that allows specifying a custom cell template specifically for the "select" column.
Looking at the documentation, there is an example that shows how to do something similar, but it overrides the complete CellRenderer for all columns.

Here is a minimum example of the API we could have:

<script lang="ts" setup>
  import { Grid } from '@progress/kendo-vue-grid';
</script>

<template>
  <Grid
    selected-field="selectedField"
    selected-cell="mySelectCell"
  >
    <template #mySelectCell="{ props }">
      <!-- Checkbox or whatever you want -->
    </template>
  </Grid>
</template>


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.