Completed
Last Updated: 11 Nov 2024 14:32 by ADMIN
Created by: Murilo
Comments: 4
Category: Grid
Type: Feature Request
16
Possibility for the user created conditional formatting in the kendo grid. Column background color, text color, line background color, icon, etc, with user condition. There is an example https://jsfiddle.net/magomes/ptwbh0ec/11/, I didnĀ“t work on the dialog layout, but that is the idea and maybe an initial solution.
Completed
Last Updated: 11 Nov 2024 14:27 by ADMIN

Can you provide settings for the Grid keyboard navigation to selectively ignore specific keys like Enter or Tab?

I would like to use the built-in keyboard navigation as it behaves the way we want outside of one inconsistency.

I've got a grid whose rows expand to show another, templated, grid. I also have clickable links in the cells of the parent grid. Using a mouse, I can click these links directly or click the expansion icon to expand the row. Using keyboard navigation, however, I can only expand the parent row when I press enter. On grids without a templated sub-grid, pressing Enter will focus the link in the parent cell. I would like this behavior to be uniform.

I have tried intercepting the keydown event, but it seems that the expansion occurs even when I try to prevent default or return false as it happens seemingly in parallel.

Is there a way to achieve the functionality I want without resorting to overriding keydown or, if not, is there a way to cancel/control the expansion myself rather than having it automatically happen so that I can handle it in a custom keydown?

Grid example:

On this grid, when I press enter while Dialog Link column cell is selected, it expands the row.

Here in this example is a grid without a templated subgrid. Pressing enter on the same column focuses the "AAA" anchor tag within it, which is the desired behavior in both grids.

My attempt to control the expansion myself via a custom keydown event. The expansion happens before this logic has a chance to finish running:

Completed
Last Updated: 11 Nov 2024 13:29 by ADMIN
Let's say we have an grid with incell editing and navigation enabled. But also there may be some column which are readonly (non editable ).  Currently when I press the tab from an editable cell it focus on non editable cell's ,which is no needed. I'll prefer to have a navigation which is stopping only at the editable cells when I press the tab.  And also I would like to add new row when I press the tab form last editable cell in the last row.
Completed
Last Updated: 11 Nov 2024 13:14 by ADMIN
When using Grid with virtual scrollbar there is no possibilty to go to sepecific row programaticly. Especially for row that are not yet loaded.

I have managed to move the scrolbar using 

grid.virtualScrollable.verticalScrollbar.scrollTop(scrollRow[0].offsetTop + pageOffset * pageIndex);

however the calcualtion of the location of the row is impossible when rows have dynamic height.
Completed
Last Updated: 08 Nov 2024 08:17 by ADMIN
Release 2024 Q4 (Nov)
Created by: Matthew
Comments: 0
Category: Grid
Type: Bug Report
0

Bug report

When the Grid has media column configured and the browser is resized an error is thrown.

Reproduction of the problem

  1. Run the Dojo: https://dojo.telerik.com/UFuJacem
  2. Resize a column
  3. Resize the browser window

Current behavior

An error: Uncaught TypeError: Cannot read properties of undefined (reading 'contains') is thrown.

Expected/desired behavior

There should be no error in the browser cosole.

The issue is a regression starting with 2024.3.806

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all ]
Completed
Last Updated: 06 Nov 2024 09:42 by ADMIN
Release 2024 Q4 (Nov)
Created by: JORGE
Comments: 0
Category: Grid
Type: Bug Report
1

Bug report

Using the Material Theme, inside the Grid's Checkbox filter, the input and span are misaligned.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo based on Filter Multi Checkboxes Live Demo.
  2. Open the Product Name checkbox filter.

Current behavior

image

Expected/desired behavior

The input and span should be aligned.

Workaround

Apply the following CSS - Seen in this Dojo:

    label.k-checkbox-label {
      align-items: center;
    }

Environment

Completed
Last Updated: 06 Nov 2024 09:13 by ADMIN
Release 2024 Q4 (Nov)

Bug report

When the first column in the Grid is hidden and the Grid is grouped, the hidden cells are focused when the user tries to navigate using the keyboard.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/TsDxOwAj
  2. Click on the 'store_name' header.
  3. Press the down arrow key twice -> focus frame disappears (the hidden cell on the left receives a focus state, but this is not visible).
  4. With the keyboard press the up arrow one time -> "Hidden column used for grouping: 1" cell is highlighted.
  5. With the keyboard press the up arrow, one more time, and -> focus disappears (actually, the hidden column cell on the top left corner receives the focus state, but this is not visible).

Current behavior

The hidden column receives the focus, thus the focus is hidden when the user navigates and the next cell is part of the hidden column.

Expected/desired behavior

The focus should not disappear when there are hidden columns.

The issue is a regression starting with Kendo version 2023.3.1010.

Environment

  • Kendo UI version: 2024.3.806
  • jQuery version: x.y
  • Browser: [all ]
Completed
Last Updated: 06 Nov 2024 08:21 by ADMIN
Release 2024 Q4 (Nov)

Bug report

When a groupHeaderTemplate is defined with HTML, and a groupHeaderColumnTemplate is defined, the groupHeaderTemplate will return the stringified version of the template.

Note: The groupHeaderTemplate is encoded only when a griupHeaderColumnTemplate is defined.

Reproduction of the problem

1.Go to Kendo UI Dojo.

Current behavior

The groupHeaderTemplate is rendered as a sanitized string

Expected/desired behavior

The groupHeaderTemplate is to be rendered as a Checkbox element and a string

This is a regression introduced with Kendo 2024.3.806

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all]
Completed
Last Updated: 05 Nov 2024 09:45 by ADMIN
Release 2024 Q4 (Nov)

Bug report

When the filterable mode is enabled in the Grid and the user has to scroll to the needed column, then the Column Menu autocloses right after a column is selected or deselected in the column list in the ColumnMenu. The issue appears only with 'classic' mode.

Reproduction of the problem

  1. Open the Dojo or the Demo.
  2. Scroll to the last column and uncheck/check one of the columns.

Current behavior

The ColumnMenu immediately closes. The ColumnMenu does not close when it is used for the initially visible columns.

Expected/desired behavior

The ColumnMenu should not close. The behavior should be consistent for all the columns.

The issue is a regression starting with 2022 R1 (2022.1.119) release

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all ]
Completed
Last Updated: 05 Nov 2024 08:27 by ADMIN
Release 2024 Q4 (Nov)
Created by: Preston
Comments: 0
Category: Grid
Type: Bug Report
0

Bug report

When there is a frozen command column configured in the Grid and the user groups by a column, the frozen column is autoresized and has incorrect width.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/VexIXpkO.
  2. Group the Grid by a column, for example, 'ProductName'.
  3. Click the 'Edit' command button.

Current behavior

The frozen column is changing its width, it gets narrower. Thus, in some scenarios, the 'Cancel' button in the edited row may not be entirely visible.

Expected/desired behavior

The frozen column width should remain unchanged.

The issue is a regression starting width 2024.3.806

Environment

  • Kendo UI version: 2024.3.1015
  • Browser: [all ]
Completed
Last Updated: 05 Nov 2024 08:24 by ADMIN
Release 2024 Q4 (Nov)

Bug report
Group column width incorrect after drag resize on a locked grid

Reproduction of the problem
Open the Dojo - https://dojo.telerik.com/WoBUSLOF

Resize any unlocked column on the right

Current behavior
The width of the locked column is incorrectly calculated

Expected/desired behavior
Group row text shall not be overlapped by the non-locked table

The issue is a regression starting with Kendo version 2024.3.806.

Environment
Kendo UI version: 2024.3.806
jQuery version: 3.4.1
Browser: [all ]

Completed
Last Updated: 28 Oct 2024 07:20 by ADMIN
Release R1.2024-Increment.1(15.Nov.2023)
Created by: Satish
Comments: 2
Category: Grid
Type: Bug Report
0

Bug report

The Grid column header texts collides with the columnMenu icons.

Regression introduced with 2023.1.314

Reproduction of the problem

  1. Open this Dojo example or the Multi-Checkboxes Grid demo (on a small screen)

Current behavior

The column header text overlaps with the menu icon

Expected/desired behavior

the header text shouldn't collide with the menu icon

Environment

  • Kendo UI version: 2023.2.606
  • Browser: [all]
Completed
Last Updated: 17 Oct 2024 13:49 by ADMIN
Release 2024 Q4 (Nov)

Bug report

Regression Bug.

The new double tap editing mode not entered in Chrome and Edge on mobile devices since 2023.3.1010

Tested on iPad and iPhone

Reproduction of the problem
Dojo: https://dojo.telerik.com/AtaWufEG

Expected/desired behavior
User shall be able to enter editing mode on double tap

Environment
Kendo UI version: 2023.3.1010 or newer
Browser: [Chrome, Edge on Apple mobile device]

Completed
Last Updated: 14 Oct 2024 16:54 by Jeff
Release 2024 Q4 (Nov)

Bug report

When the selectable is set to "multiple, row", the default editable mode is enabled and the user tries to edit a cell, the editable cell is not closing

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/IxUgEMUP or https://dojo.telerik.com/@NeliK/uyuhOFIK 
  2. Edit a cell and click on another cell to edit.

Current behavior

The first time the cell is closed as expected. However, every second edited cell is not closing.

Expected/desired behavior

The edited cell should close.

The issue is a regression starting with the 2024.2.514 version

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all ]
Completed
Last Updated: 11 Oct 2024 07:08 by ADMIN
Release 2024 Q4 (Nov)

Bug report

In a navigatable Grid, if you sort a nested column, the focus will be at the wrong column.

Regression introduced with 2022.3.913 version

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/XMLkDnyO
  2. Sort the age column

Current behavior

The address column is focused after sorting the age column

Expected/desired behavior

Focus should remain on the sorted column

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all]
Completed
Last Updated: 12 Sep 2024 14:20 by ADMIN
Release 2024 Q4 (Nov)

Bug report

copySelectionToClipboard() throws an error when the Grid has hidden column/s

Also if false is passed to the method  - grid.copySelectionToClipboard(false); - not all  GUID columns are copied to the clipboard

Reproduction of the problem
Dojo: https://dojo.telerik.com/OpiBoDaH

Select a row/rows

Click on the Select and copy button

Expected/desired behavior
Error should not be present and copy to clipboard shall copy correct data

Environment
Kendo UI version: [all]
Browser: [all]

Completed
Last Updated: 30 Aug 2024 13:14 by ADMIN
Release 2024 Q4 (Nov)

Reproduction steps: 

Try to expand a group in this dojo:

Workaround: 

Appending the following script right after loading the kendo scripts:

  • https://dojo.telerik.com/aroxoYeB/6 
  • kendo.ui.Grid.original_groupable = kendo.ui.Grid.prototype._groupable;
    kendo.ui.Grid.prototype._groupable = function() {
        let that = this;
        kendo.ui.Grid.original_groupable.call(that);
        if (!kendo.support.isRtl(that.element)) {
            return;
        }
    
        if (that._isLocked()) {
            that.lockedTable.on("click.kendoGrid", ".k-grouping-row " + "a[class*='-i-caret-alt-right']", that._groupableClickHandler);
        } else {
            that.table.on("click.kendoGrid", ".k-grouping-row " + "a[class*='-i-caret-alt-right']", that._groupableClickHandler);
        }
    }
Completed
Last Updated: 27 Aug 2024 15:16 by ADMIN

Bug report

When the Add new Record button is clicked multiple times, the newly added row is not saved, when the 'Save' button is clicked.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/adURoNaH
  2. Click the 'Add new record' button at least twice.
  3. Try to edit the row and click the 'Save' button.

Current behavior

The row freezes and is not closed. If after clicking the 'Save' button the user clicks again the 'Add new record' the row is saved.

Expected/desired behavior

The row should be saved and closed when the 'Save' button is clicked, even if the 'Add new record' is clicked multiple times.

The issue is a regression starting with 2014.1.319 release

Environment

  • Kendo UI version: 2024.2.514
  • Browser: [all ]
Completed
Last Updated: 27 Aug 2024 08:34 by ADMIN
Release 2024 Q4 (Nov)

Bug report

An error is thrown in the browser console when you navigate to the last Grid page when grouping is enabled.

Regression with 2022.1.301

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/aYInodep/3
  2. Expand the Canada group.
  3. Navigate to the last page

Current behavior

An error is thrown on the browser console.

Expected/desired behavior

No errors should be thrown in the browser console

Environment

  • Kendo UI version: 2023.3.1010
  • Browser: [all]
Completed
Last Updated: 20 Aug 2024 11:47 by ADMIN
Release 2024 Q4 (Nov)
Created by: PSRC
Comments: 0
Category: Grid
Type: Bug Report
0

Bug report

Copy Paste to Search Panel with `allowPaste` set to `true` in the grid is not working

Regression since 2024.1.130

Reproduction of the problem
Dojo: https://dojo.telerik.com/EnUpigUf/2

Try pasting a value in the Search input

Current behavior
The expand arrow disappears.

Expected/desired behavior
User shall be able to paste values to the search panel

Environment
Kendo UI version: 2024.1.130 or newer

jQuery version: 3.4.1

Browser: [all]

1 2 3 4 5 6