Completed
Last Updated: 07 Sep 2021 07:29 by Michael
Created by: Ken
Comments: 17
Category: Menu
Type: Feature Request
98
It would be great to be able to simply connect the menu widget to a DataSource to populate. It will allow for a data driven menu, instead of having to handle that logic on the client side.
Completed
Last Updated: 15 May 2017 11:19 by ADMIN
Created by: Tom Stacy
Comments: 3
Category: Menu
Type: Feature Request
36
Add an overflow option/setting to the menu control. If the height or width of a menu group exceeds the current page viewport height or width, a new section would be added to the beginning and end of the menu to allow scrolling without adding scrollbars. 

Example - If a horizontal menu has a sub menu that exceeds the height of the current page viewport, add sections to the top and bottom of the sub menu to allow the menu items to be scrolled up or down (mouseover or click) without adding a scrollbar to the sub menu.
Completed
Last Updated: 06 Dec 2019 09:34 by ADMIN
Created by: Angelo
Comments: 3
Category: Menu
Type: Feature Request
24
Kendo UI is so customizable, which is why I'm transitioning away from DHTMLX, jQuery UI and jQuery Mobile. The Menu currently allows some control over click events, but I think, in keeping with Kendo's current customization options, full control over click and hover events would be a great thing to have.

I was able to mock this by commenting out 1 line of code, so to add as a configure option, this should be pretty easy to implement.
Completed
Last Updated: 06 Dec 2019 08:05 by ADMIN
Created by: David Apelt
Comments: 1
Category: Menu
Type: Feature Request
3
In the kendo ui menu, we need the ability to associated a number (or primary key) with the menu so that when it is clicked we can then use this id and make an async js callback or the like.  At the moment the only thing we have available is the menu item text.  What happens if the menu has two menu items with the same text? ie File -> Properties and Folder -> Properties?
Completed
Last Updated: 01 Sep 2021 11:20 by ADMIN
Release 2021.R3

When new item with sub-items is appended or inserted (before/after) into kendoMenu or kendoContextMenu then "aria-expanded='false'" text surprisingly appears right to the new item. This defect can be reproduced just by running the demos published for kendoContextMenu or kendoMenu's methods such as append, insertAfter or insertBefore, or as shown bellow. The defect is reproduced on Windows and Linux, as well as on Firefox, Chrome and Edge.

 

Completed
Last Updated: 06 Dec 2019 09:46 by ADMIN
According to the documentation at:

http://docs.kendoui.com/kendo-ui/api/web/menu#configuration-dataSource 

you can add the following information to a dataSource:

text
cssClass
url
encoded
content
imageUrl
spriteCssClass

However you cannot add an id to the menu item you are creating.  This makes it very difficult to remove items by using:

menu.remove("#Item1");

The only way round this is to assign a unique class to each menu item and then remove them using:

menu.remove(".news");

If an id can be added that would be great.  You have an example here:

http://docs.kendoui.com/kendo-ui/api/web/menu#methods-remove

Which is what we would like to do except the items will be created via a program and not static HTML.
Completed
Last Updated: 04 Jun 2024 06:05 by ADMIN
Release 2024 Q1

Bug report

When items are added to the Menu component using the append() method, the select event of the items is not triggered.

Regression introduced with 2023.2.606

Reproduction of the problem

  1. Open the following Dojo example - https://dojo.telerik.com/@Zornitsa/UJASiWUq
  2. Select the "Sub Item 1" menu item.

Current behavior

The alert about the item selection is not appearing, i.e. the select event is not triggered.

Expected/desired behavior

The select event should be triggered and the alert should appear as expected.

Environment

  • Kendo UI version: 2023.3.1010
  • Browser: [all]
Completed
Last Updated: 27 May 2024 11:08 by ADMIN
Release 2024 Q3 (Aug)
Created by: Shlomo
Comments: 0
Category: Menu
Type: Bug Report
1

Bug report

When utilizing the content property for a Kendo UI Menu's DataSource, the MenuItem's content is not created as expected based on documentation.

Reproduction of the problem

Here is a Progress Kendo UI Dojo which replicates the appearance issue.

Expected/desired behavior

This is a Dojo with an older version that is working as expected.

Workaround

Define the content in a nested Items property:

           {
             text: "<b>Item 2</b>",
             encoded: false,                              // Allows use of HTML for item text
             items: [{
               content: "text",                            // content within an item
               contentAttr: {
                 style: 'border: 1px solid red; padding: 2px;', // Add attributes to the content container
                 custom: 'value'
               }
             }],                             
           },

Here is a Dojo of the workaround in action.

Environment

  • Kendo UI version: 2023.3.1114
  • jQuery version: All supported versions
  • Browser: all
Completed
Last Updated: 13 May 2024 12:58 by ADMIN
Release 2024 Q2 (May)

Steps to reproduce:

  1. https://dojo.telerik.com/ovUhajAp
  2. Run the dojo and click the "Append" button

Expected: New child list item under the "Fifth Item" menu is bold and purple
Actual: New child list item is not formatted

If you inspect the DOM for the appended item, you will notice that the list item was not appended to a ul. A child ul was created but it is empty and has an undefined id.

It looks like this bug was introduced in 2023.2.606

Completed
Last Updated: 08 Dec 2023 09:48 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)

Bug report

Currently, when an item is expanded in the Menu, the screen readers do not read which item/subitem is expanded. The 'aria-expanded' attribute is not added to the Menu.

https://www.w3.org/TR/wai-aria-practices/examples/menubar/menubar-1/menubar-1.html

Reproduction of the problem

  1. Open the demos
  2. Focus on the Menu and expand an item.

Current behavior

The 'aria-expanded' is not added to the Menu and the screen readers do not inform which item is expanded

Expected/desired behavior

The screen readers should be able to read which item is expanded in the Menu.

Environment

  • Kendo UI version: 2021.1.119
  • Browser: [all ]
Completed
Last Updated: 14 Sep 2020 08:09 by ADMIN
Release 2020.R3
Created by: Jeff
Comments: 0
Category: Menu
Type: Bug Report
1

Bug report

Reproduction of the problem

Dojo example.

  1. Click "Test1" and immediately hover "Sub Item 1"

Current behavior

The sub-menu of "Sub Item 1" does not open.

If the behavior is not exhibited on the first test, click another of the root items and repeat, or reload the example and try again. The issue is more easily reproducible in IE, however it occurs in Chrome and Firefox as well. For more details and a video demonstrating the issue, refer to Ticket ID: 1472421

Expected/desired behavior

Sub menus open consistently.

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 09 Dec 2019 11:12 by ADMIN
WI
Hi Telerik Team,

Just wanted to point out that it would be nice if you could kindly put "-Bruce Lee" after the "Content is like water" quote. 

Thank you
Completed
Last Updated: 06 Dec 2019 09:24 by ADMIN
Created by: José Manuel
Comments: 1
Category: Menu
Type: Feature Request
1
Hi,

ContextMenu scroll ( contextmenu height ). ( telerik RadContextMenu do it )

Thanks
Completed
Last Updated: 05 Nov 2024 07:00 by ADMIN
Release 2024 Q4 (Nov)

Bug report

Vertical Menu with multi-level sub-menus and specified height for the sub-menu does not render the items correctly.

Reproduction of the problem

Open the following Dojo: https://dojo.telerik.com/ypHIRacj

Hover on `Mens` item.

Expected/desired behavior
Overflowing items shall be hidden and the scroller should scroll through the list.

Environment

jQuery: 3.4.1

Kendo UI version: 2024.3.1015
Browser: [all]

Completed
Last Updated: 16 Sep 2024 12:01 by ADMIN
Release 2024 Q4 (Nov)
Created by: Anthony Gianino
Comments: 0
Category: Menu
Type: Bug Report
0

Bug report

The popupCollision option of the Menu cannot be set in MVVM

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/izaZIkAK/7
  2. Test a scenario in which the popupCollision would apply, or check the Menu options in the browser console.

Current behavior

The popupCollision cannot be set

Expected/desired behavior

You should be able to set the option in MVVM scenario

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Completed
Last Updated: 17 Jul 2024 10:21 by ADMIN
Release 2024 Q3 (Aug)
Created by: Felix
Comments: 7
Category: Menu
Type: Bug Report
0

Bug report

Scrolling submenu in Scrollable Menu not available in 2024.1.319

Regression with v.2024.1.319

Reproduction of the problem
Open this Dojo example - https://dojo.telerik.com/aweLUguB
Hover over "Mens"

Expected/desired behavior
Scrollbar shall be rendered so user can scroll over the list items

Environment
Kendo UI version: 2024.1.319
Browser: [all]

Completed
Last Updated: 13 May 2024 12:55 by ADMIN
Release 2024 Q2 (May)

Bug report
Vertical ContextMenu missing wrapper element <div class="k-menu-scroll-wrapper vertical">

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

Result:



Environment
Kendo UI version: [2022.2.510 or newer]
jQuery version: [all]
Browser: all

 
Completed
Last Updated: 25 Mar 2024 10:19 by ADMIN
Release R1.2023-Increment.1(09.Nov.2022)

Bug report

When you try to append a child item in the Menu, the parent item is replaced instead.

Regression introduced with 2022 R1

Reproduction of the problem

  1. Open this Dojo example.
  2. Click the Append 2 button
  3. Check Item 2

Current behavior

The new item replaces Sub Item 1

Expected/desired behavior

The new item should be appended as a child to Sub Item 1

Environment

  • Kendo UI version: 2022.2.802
  • Browser: [all]
Completed
Last Updated: 06 Dec 2023 09:39 by ADMIN

Bug report

Reproducible with version 2017.2.504 (R2 2017) and newer.

Reproduction of the problem

Dojo example.

  1. Open a submenu in the top Menu (it has scrollable: true set).

Current behavior

Separators are not displayed.

Expected/desired behavior

Separators are displayed.

Workaround:

.k-menu-scroll-wrapper .k-menu-group .k-separator {
  border-bottom: 1px solid #c5c5c5;
  width: 100%;
}

Environment

  • Kendo UI version: 2019.3.917
  • jQuery version: x.y
  • Browser: [all ]
Completed
Last Updated: 19 Oct 2023 15:17 by ADMIN
Release R3.2023-Increment.3(11.Oct.2023)

Bug report

When scrollable and closeOnClick are enabled and the user click on an item, the Menu does not close.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliKondova/AwaqAqIP
  2. Click on an item in the Menu.

Current behavior

The Menu does not close.

Expected/desired behavior

The Menu should close after the user click on an item.

The issue is a regression starting with the 2023 R1 SP1 (2023.1.314) release.

Environment

  • Kendo UI version: 2023.1.425
  • Browser: [all ]
1 2