Duplicated
Last Updated: 31 Aug 2020 08:12 by ADMIN
Oleg
Created on: 10 Jul 2020 11:34
Category: Grid
Type: Bug Report
1
columns.selectable breaks columnMenu

Hi!

I've found that column menu doesn't work properly when both columns.selectable and columnMenu are enabled. Just run this code snippet and try to enable/disable columns in column menu.


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.2.617/styles/kendo.default-v2.min.css"/>

    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2020.2.617/js/kendo.all.min.js"></script>
</head>
<body>
  
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columnMenu: true,
  columns: [
    { selectable: true },
    { field: "name" },
    { field: "age" },
    { field: "pet" }
  ],
  dataSource: [
    { name: "Jane Doe", age: 25, pet: 'dog' }, 
    { name: "John Doe", age: 71, pet: 'cat' } 
  ]
});
</script>
</body>
</html>

Duplicated
This item is a duplicate of an already existing item. You can find the original item here:
2 comments
ADMIN
Petar
Posted on: 17 Jul 2020 10:00

Hi Stephane and Oleg,

The bug is already in out Backlog and, I believe it will be fixed very soon. You can periodically check its status in the GitHub item provided by Stephane. Once the issue is closed, this means that it is fixed. 

Let me know if I can assist you with something else related to the current bug report. 

Regards,
Petar
Progress Telerik

Stephane
Posted on: 15 Jul 2020 15:35
Yes, it's the same bug than this one (see also #5870). Unfortunately, we don't know when this annoying bug will be fixed (hoping it will be).