Completed
Last Updated: 07 Jun 2022 13:15 by ADMIN
Created by: Crawford
Comments: 3
Category: Kendo UI® for Vue
Type: Feature Request
0

I would really like to see the following:

- combobox with cascading,

- treeview.

Vue docs say it's incompatible with jquery, so I don't understand how I could use jquery based components.

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


1 2