Unplanned
Last Updated: 27 Sep 2024 07:10 by Nagasandeep

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 ]
Pending Review
Last Updated: 26 Sep 2024 07:55 by AGB
Created by: AGB
Comments: 0
Category: Grid
Type: Bug Report
0
Hi Guys,

Have just tripped over an issue with grid checkboxes whereby they cannot be accessed via the keyboard.

To illustrate

    - Run the following dojo
           https://dojo.telerik.com/ojODosUL

    - Select any checkbox then try tabbing to the next ... It doesn't happen.

If you look at the checkboxes using the browser's dev tools you will see the header and cell checkbox inputs have been assigned the attribute tabindex="-1" so it's no wonder they cannot by accessed.

This regression seems to have been introduced with version 2022.2.802

Looking at the release notes for this version I don't see any mention of this breaking change so it looks like its another bug which has been kicking around for a while which your QA accessibility testing hasn't picked up on.

Regards
Alan

Unplanned
Last Updated: 13 Sep 2024 10:02 by Matthew
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 ]
Unplanned
Last Updated: 11 Sep 2024 14:59 by Chaitanya
Created by: Chaitanya
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I'd like to request by default to resize the Kendo UI Grid's total width by default when using the AutoFitColumns method.

Thank you!

  
Unplanned
Last Updated: 13 Sep 2024 09:12 by ADMIN
Created by: Andrew
Comments: 2
Category: Grid
Type: Feature Request
1

Hi Team,

I'd like to request the functionality to add the pager to the top and bottom of the Grid.  I did see this request which set the Top OR Bottom position, but I'd like to see both in the future.  

Thank you!

Completed
Last Updated: 02 Sep 2024 11:44 by ADMIN
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 ]
Unplanned
Last Updated: 30 Aug 2024 09:30 by ADMIN

Steps to reproduce the problem:

Have a grid with:

  • specified width (e.g: 1000)
  • column virtualization
  • multiple columns with a width of 100, but most of them hidden in initial state (e.g.: 50 total, but only 8 shown)
  • columnMenu true
  • resizable true

When running the code that create the grid, the initial state looks like this:

Current behavior:

The header columns are filling the width of the grid (each bigger than the specified 100), but the rows columns cells have the specified width of 100, causing a misalignment.

However, changing the width of a column with the resize handle fixes all the widths (header + rows). 
Same thing for adding/removing a column from the menu.

See the attached video for an example.

If in the initial state there are more shown columns so they can fill the grid width (and have the horizontal scrollbar), the issue is not present.

Expected behavior:

Rows columns should always match the width of the header.

Dojo example:

Here's an example, based on the one from https://demos.telerik.com/kendo-ui/grid/column-virtualization 

https://dojo.telerik.com/@pgarand/UfEkIGiD

 

Declined
Last Updated: 28 Aug 2024 13:27 by ADMIN

Bug report

When the selectable.dragToSelect option is set to false, you can't assign a dragstart event on the Grid's rows.

Regression introduced with v2024.2.514

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/aROGEpaQ/3
  2. Try to drag a row

Current behavior

The dragstart from the dataBound event is not triggering

Expected/desired behavior

The dragstart event should be triggering

Environment

  • Kendo UI version: 2024.3.806
  • 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: 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]

Unplanned
Last Updated: 01 Aug 2024 16:32 by ADMIN

It will be really helpful if the Grid allows scroll down as you try to select more elements that are outside of the visible view.

This is one of known limitations of the widget: https://docs.telerik.com/kendo-ui/controls/grid/selection#select-modes

Unplanned
Last Updated: 31 Jul 2024 15:53 by brian
Created by: brian
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request a way to configure the allowPaste feature to paste the row above or below the selected row/cell.  

Thank you!

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 ]
Unplanned
Last Updated: 19 Jul 2024 08:01 by ADMIN

Environment (OS, Application, Versions): Chromium Edge Version 119.0.2151.72 (Official build) (64-bit)

Repro Steps : 

  1. Lauch the application using URL: https://dojo.telerik.com/UZIkuGoD
  2. “Kendo UI ® Dojo by Progress” screen should open.
  3. TAB to “Run” button and hit ENTER key.
  4. TAB to "First Name" column in the table and press CTRL + SPACE key.
  5. Observe that by pressing CTRL + SPACE key whether the table columns are getting grouped or not.

 

Actual Results: User is not able to group/ungroup the table column header using keyboard with CTRL + SPACE key.

Expected Results: User should be able to group/ungroup the table column header using keyboard with CTRL + SPACE key.

 
Unplanned
Last Updated: 02 Jul 2024 14:35 by Dan

Expose "columns.command.text.add" configuration for changing the Popup's editable when Add operations are performed. Similar to that of the columns.command.update.

Need More Info
Last Updated: 17 Jul 2024 07:10 by ADMIN
Created by: Michael D
Comments: 3
Category: Grid
Type: Bug Report
0

In current versions of Firefox, scrollbars do not longer reserve any space. In grids with locked columns, this leads to a double border at the right end of the grid's header:

The problem only appears if locked columns are present and scrollbars use zero-width (Firefox-Default). This DOJO contains a minimum reproducible example.

Completed
Last Updated: 25 Jun 2024 07:45 by ADMIN
Release 2024 Q3 (Aug)

Bug report

Regression with 2024.1.319

Footer on a scrollable grid with sticky column not aligned when columns are resized

Reproduction of the problem

Dojo: https://dojo.telerik.com/OrIwemEP

1. Resize the column "age"

2. Then resize the column "name", and here is the outcome.


Expected/desired behavior
Fotter shall be aligned with the columns

Environment
Kendo UI version: 2022.1.301 or newer
jQuery version: []
Browser: []

Completed
Last Updated: 04 Jul 2024 14:18 by ADMIN
Release 2024 Q3 (Aug)

Bug report

When the Grid is grouped and there is a locked column set, the grouping columns and the locked column have incorrect widths.

Reproduction of the problem

  1. Open the Dojo example - https://dojo.telerik.com/@NeliK/aYUyeyAS

Current behavior

The width of the locked column is 103px although the configured width is 50px. The grouping columns have a width of 66px although the width applied from the theme is 32px.

Expected/desired behavior

The width of the locked column should be according to the value set in the configuration of the Grid. The grouping column should have a width as applied by the themes.

The issue is a regression starting with R2 2023 SP1 (version 2023.2.718) release.

Environment

  • Kendo UI version: 2024.2.514
  • Browser: [all ]
Unplanned
Last Updated: 05 Jun 2024 12:52 by Beata
Created by: Beata
Comments: 0
Category: Grid
Type: Bug Report
1

Bug report

When resizing the Kendo UI Grid column, the footer width is miscalculated.

Reproduction of the problem

  1. Go to this dojo
  2. Increase the name column.
  3. Scroll to the right in the Grid.
  4. Reduce the width of the name column.

Expected/desired behavior

The footer should be aligned as the column is resized like in version 2024.1.130(Dojo)

Environment

Unplanned
Last Updated: 30 May 2024 08:34 by Ion

Bug report

In a Grid with enabled navigation and custom column cell filter, the input is not focused and hitting Enter does not filter the data.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/exUYasAt/2
  2. Click on the filter in the Name column
  3. Type some text and hit enter

Current behavior

The data is not filtered.

Expected/desired behavior

The data should be filtered.

Environment

  • Kendo UI version: 2024.2.519
  • Browser: [all]
1 2 3 4 5 6