Unplanned
Last Updated: 13 Apr 2023 14:10 by ADMIN

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

Unplanned
Last Updated: 04 Apr 2023 07:07 by Ryan
Created by: Ryan
Comments: 0
Category: Grid
Type: Feature Request
1

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.

 

Completed
Last Updated: 20 Mar 2023 12:29 by ADMIN
Release R2 2023 - Increment 2 (12.04.2023)
Created by: ANTONIO
Comments: 0
Category: Grid
Type: Bug Report
0

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
https://codesandbox.io/p/sandbox/beautiful-tristan-5nvvfy?file=%2Fpackage.json
open the console and click the export button.

Expected behavior
No error in console

Unplanned
Last Updated: 17 Mar 2023 14:58 by Ron

Describe the bug
The column virtualization functionality doesn't work when the Grid is configured to work in RTL direction.

To Reproduce

  1. Open this StackBlitz example
  2. No data is visualized inside the Grid
  3. If we remove the :dir="'rtl'" configuration the Grid data is correctly displayed

Expected behavior
The Grid's column virtualization should work with both LTR and RTL configurations.

Unplanned
Last Updated: 15 Mar 2023 14:11 by Kenji

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. 

Unplanned
Last Updated: 06 Mar 2023 11:25 by Dev

Describe the bug

When exporting the Kendo UI for Vue Native Grid data to a PDF file and the paper-size property is set to true, if there are locked columns inside the Grid, these columns are exported as empty columns.

To Reproduce

  1. Open this StackBlitz example
  2. Press the button above the Grid and save the exported file
  3. Open the saved file and see how the locked columns have been exported

Expected behavior
All Grid columns should be correctly visualized in the exported PDF file, no matter if they are locked or unlocked.

Screenshots
image

Additional context
If we set the paper-size to a pre-defined value like 'A4', the issue is not replicable

Completed
Last Updated: 01 Mar 2023 06:19 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)

Describe the bug

When defining a footer in a locked native Grid column, the footer of the column is moving when the content of the Grid is scrolled horizontally.

To Reproduce

  1. Open this CodeSandbox example
  2. Scroll the content of the Grid to the right

Expected behavior
The footer inside the ID column should not move when scrolling the Grid's content

Screenshots
image

Completed
Last Updated: 01 Mar 2023 06:15 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)

Describe the bug
There is a blank space at the bottom of the Grid when the user scrolls the data. This blank space appears on a specific configuration where the Native Grid is configured with virtual scrolling and the groupable property is set as follows:

:groupable="{ footer: 'visible' }"
  • The issue is replicable in both Vue 2 and Vue 3
  • The issue is not replicable if the groupable prop is defined like this:
:groupable="true"

To Reproduce

  1. Open this StackBlitz example
  2. Scroll the data items to the bottom of the Grid

Expected behavior
There shouldn't be any white/blank spaces at the bottom of the Grid

Screenshots
image

Unplanned
Last Updated: 25 Jan 2023 07:11 by ADMIN
Scheduled for R2 2023 - Increment 1 (01.03.2023)

Describe the bug
The value of the data-grid-row-index attribute of the different Native Grid rows is always -1, no matter the scenario in which the component is used.

To Reproduce

  1. Open this StackBlitz example
  2. Inspect a random Grid row and see its attributes

Expected behavior
The different rows inside the Grid should have different values for the data-grid-row-index attribute.

Unplanned
Last Updated: 06 Dec 2022 13:06 by ADMIN
Created by: Jef
Comments: 2
Category: Grid
Type: Feature Request
5

With the current implementation of the Native Grid, if one needs to set a minimum width to a column that needs to add the implementation suggested in this Setting a Minimum Column Width example.

While the approach in the above example works as expected, the logic that needs to be added can be internal for the Grid component. Thus the users will have to add a simple column property like the below and no other configuration should be set.

  {
    field: "ProductName",
    title: "Name",
    minWidth: 200
  }

Unplanned
Last Updated: 30 Nov 2022 09:40 by ADMIN
Scheduled for R1 2023 - Increment 2 (07.12.2022)

Describe the bug
When the Grid's resizable property is set to true, the following test fails:

import { describe, it, expect } from "vitest";
import App from "../App.vue";
import { render } from "@testing-library/vue";

describe("App.vue", () => {
  it("renders apps", async () => {
    render(App);
  });
});
  • The issue is not replicable if in Draggable.js file the:
import KendoDraggable from '@progress/kendo-draggable';

is changed with:

import { Draggable as KendoDraggable } from '@progress/kendo-draggable';

With this error:
image

To Reproduce

  1. Open this project
  2. Run 'npm install'
  3. Run 'npm run test:unit'

Expected behavior
The test should pass as it used to pass in version 3.5.0, for example.

Unplanned
Last Updated: 18 Nov 2022 13:07 by Sviluppo

Describe the bug
When activating the keyboard navigation inside the Native Grid and there are custom cells in this Grid, the navigation between the cells(in a specific scenario) is slow.

Scenario: In a Grid whose cells are all custom, focus a random cell in the first column. Then press and hold the right keyboard arrow. The focused cell starts moving to the right and then freezes until the last Grid column is reached.

Here is a video demonstrating the described scenario: https://user-images.githubusercontent.com/41293735/202707680-1964d01e-dbd3-4a35-93c4-1dbcfd45e887.mp4

  • The issue is replicable on Chrome and Chromium-based browsers, on Windows 10.
  • Testing the scenario on Firefox(Windows 10), the issue cannot be reproduced.

To Reproduce
Steps to reproduce the behavior:

  1. Open this StackBlitz example on Windows and Chrome/Chromium-based browser
  2. Focus a cell in the first column of the Grid
  3. Press and hold the right keyboard arrow

Expected behavior
The movement of focus inside the Grid should be smooth and visible

Unplanned
Last Updated: 08 Nov 2022 11:51 by Alex

Describe the bug
When expanding/collapsing grouped data in the Grid re-renders all Grid rows while only the collapsed ones should be re-rendered.

To Reproduce

  1. Open this CodeSandbox
  2. Collapse a group
  3. Open the browser's console and see that row-render has been called 1000 times

Expected behavior
The row-render method should be called for the rows that hold the collapsed data, not for all Grid rows.

Unplanned
Last Updated: 04 Nov 2022 14:01 by jj.huang

In the jQuery version of the Grid, the columnMenu can be configured to show/hide the different column menu options.

Here is an example of how the sortable prop can be configured in a way the sorting options will be hidden in the column menu. 

Please provide the same configurations options for the column menu in the Native Grid

Completed
Last Updated: 02 Nov 2022 15:37 by ADMIN
Release R1 2023 - Increment 2 (07.12.2022)

Describe the bug
Grid rowRender is triggered for every more than once in in-cell editing scenario vue 2

To Reproduce
https://codesandbox.io/s/confident-wind-50llik
1 Click on some cell
Current: RowRender is triggered for every row
Expected: RowRender is triggered only for the clicked row

Unplanned
Last Updated: 31 Oct 2022 05:42 by Jef

https://stackblitz.com/edit/mzrap6-afgvuk?file=src%2Fmain.vue

reorder the second column
result the innderHTML is NOT visible

Expected behavior
result the innderHTML is visible

workaround: use inner array instead of innerHTML - https://stackblitz.com/edit/mzrap6-y35krb?file=src%2Fmain.vue

Unplanned
Last Updated: 26 Oct 2022 12:14 by Jef
Can you provide the option to add a "hide column" feature to the column menu of the Native Grid?
Unplanned
Last Updated: 24 Oct 2022 10:49 by Supraja

The native Grid allows you to lock selected columns inside it. When we have locked columns, these are constantly visible inside the Grid, while the unlocked columns can be horizontally scrolled to see their content. 

The width of the area in which the unlocked columns can be scrolled depends on a combination of the following:

  • The number of locked columns
  • The width of the locked columns
  • The width of the Grid

Having the above, there are some scenarios in which the area where the unlocked columns are displayed can be covered by locked columns or its size can become so small that the Grid data cannot be read.

Some examples of how the area that displays the unlocked column can become invisible or minified in size are:

  • In a Grid with many columns, define many of them as locked
  • In a Grid with resizable columns, resize one or a few of the columns in a way their sum width is bigger than the Grid's width
  • A few Grid columns are locked but the Grid's width is too small

The current Feature request is about a property that defines the minimum width of the area in which the unlocked columns are scrolled. It could be a property like minUnlockedColumnsVisibleAreaWidth. Having this property defined, it should have a bigger priority over the defined column widths. This means that if there is not enough space to display the different locked columns with their pre-defined widths, the locked columns should be resized in a way the minimum visible area for the unlocked columns has enough width to display data. 

Planned
Last Updated: 21 Oct 2022 05:37 by ADMIN

Add active class to the column menu icon once something in it is different from default

Currently we recommend using custom class on the header(https://www.telerik.com/kendo-vue-ui/components/grid/columns/column-menu/#toc-styling-the-column-menu-icon), yet not visualising that the menu is populated seems like a UI misleading issue when using the component so we should add it by default

Unplanned
Last Updated: 14 Oct 2022 08:38 by Supraja

The column menu in the  Wrapper Grid has the functionality to lock/unlock a selected column.

Can you add this feature to the Native Grid?