When I try to drag or scale a tile, a line is displayed to indicate where it can be placed (red line in the image)
Can you add an option that configures the visibility of the split grid lines (dividing columns)? (Image blue)
The design available in the Kendo UI for Vue Native DatePicker is different from the popup of the KendoReact DatePicker.
Can you provide KendoReact's DatePicker design in Vue? Here is a screenshot of what I need:
The current implementation of the Native Chart component doesn't provide the option to define the position of the tooltip when using crosshairs in the component.
Can you add a configuration option similar to categoryAxis.crosshair.tooltip.positionwhich is available in the jQuery suite?
The current implementation of the TileLayout component doesn't provide some details inside the reposition event that could be useful when working on more specific scenarios like swapping the position of two tiles without moving the others.
If we know which is the dragged tile and its current position in the TileLayout's matrix + the current tile over which the dragged tile is currently positioned, through the reposition event, we can reorder the tiles the way we need them.
The current implementation of the Native Menu component doesn't provide some configuration options that are available in the Kendo UI for Angular suite.
Can you add the following configurations of the openOnClick property as it is available in the Angular suite?
If the Grid is initialized with no items, the first call to resetTableWidth as part of the initialization sets the width style on the k-grid-table to 0px.
If any items are added afterwards this style remains, even though the autogenerated columns have a greater width. This leads to the grid not being visible until its size is set manually.
Sample (Grid demo with column definitions removed and changed load the data after mount instead of after creation): https://codesandbox.io/s/late-hill-rkdhc5?file=/src/Grid.vue
Add groupHeaderColumnTemplate, as in Kendo jQuery Grid and Kendo Vue Wrapper Grid, that can be applied as it is done in this demo https://demos.telerik.com/kendo-ui/grid/aggregates.
The DatePicker, DateTimePicker, TimePicker, and DateRangePicker components don't provide open and close events that are triggered when the popup of a component is opened/closed.
The Upload component has the option to configure it to accept single or multiple files for upload.
When the component is configured to accept only one file, the text in its Select button should be in singular form - "Select file..." instead of "Select files..."
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>
The current implementation of the Native Dialog and Native Window doesn't provide the option to display the two components with an animation.
Providing the option to add animation to the Dialog and Window will be a nice feature for both components. This option can be added either through a direct property configuration or in a combination with the Animation component.
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?
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?
Add ability to specify the tag which will be inserted when the Enter key is pressed (e.g., p, br, div, etc.).
The current implementation of the Native Vue Grid doesn't provide an option to control the visibility of the column menu in each component column.
Providing a property that can control the visibility of the different column menus will be very useful in scenarios when we want to create a customized column menu that contains a component with a popup. With the current implementation of the component, if we for example add a DatePicker to the column menu, the opening of the DatePicker's calendar triggers the closing of the column menu. Having a prop that controls the visibility of the column menu we can easily handle the described scenario.
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.
In a scenario where we want to use the Drawer as a navigational component, the best solution from an accessibility perspective would be to add role="navigation" to the Drawer's items and role="main" to the Drawer's content.
The current implementation of the Drawer provides the option to define the discussed role for its content using the following code:
<DrawerContent role="main">
<router-view />
</DrawerContent>
In the current implementation of the Drawer, the only way we can define a role for its items is through a Javascript code like the following one.
document
.querySelector('.k-widget.k-drawer')
.setAttribute('role', 'navigation');
Providing a way to configure the role of the Drawer's items will be a useful feature for the component.
Hello.
I want to request a feature for the Native Editor that is available in Microsoft Word.
I would like to be able to set the cursor on an existing hyperlink, click the Hyperlink tool, and change the display text on the hyperlink.
This change would also include adding a "Display Text" form field on the hyperlink tool dialog view.