Declined
Last Updated: 11 Mar 2020 17:48 by ADMIN
Created by: Matthew R Longhouse
Comments: 1
Category: Menu
Type: Feature Request
1
My suggestion in for Marketing new products and services.

May Telerik could create a Telerik Store, for his customers sell directy to each other, sub systems, or even full systems or custom components and Themes.

Progress Telerik wins a part of the trade.

This is my idea for future community, 'cause robots will grow very fast and a Store for your plataform would be good way for humans improve each other. Could the Store developers sell too his task force for jobs targeting Telerik products.
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
Declined
Last Updated: 02 Dec 2019 08:50 by ADMIN
Please, I don't know where to direct this comment to that is why I am contacting sales for possible onward forwarding to the appropriate tea
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: 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: 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: 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: 17 May 2019 14:05 by ADMIN
Release 2019.R2.SP.Next
Created by: Heather
Comments: 1
Category: Menu
Type: Bug Report
0

Bug report

The usage of $.uniqueSort() in jQuery 1.10.x throws an error in multiple components like Menu, DropDownList, DropDownTree, and TreeView.

Related to #4665

Reproduction of the problem

  1. Open this Dojo and try to use some of the components in it.
  2. Error messages appear in the console and the components get stuck

Current behavior

uniqueSort

Expected/desired behavior

All components should work properly no matter of the jQuery version used.

To see the expected behavior change
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
to
<script src="https://kendo.cdn.telerik.com/2019.2.514/js/jquery.min.js"></script> in the provided Dojo.

Environment

  • Kendo UI version: 2019.2.514
  • jQuery version: 1.10.x
  • Browser: [all]
Completed
Last Updated: 12 Jun 2019 13:04 by ADMIN
Release 2019.R2.SP.Next

Bug report

Removing non-existing item from ContextMenu throws a Javascript Error

Uncaught TypeError: Cannot read property 'parentsUntil' of undefined

This is regression introduced in R2 2019

Reproduction of the problem

Open this Dojo and run it. Open the browser's console and see the error.

contextMenu_error

Expected/desired behavior

When removing a non-existing item from a ContextMenu no error should be thrown.

Environment

  • Kendo UI version: 2019.2.514
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 12 Jun 2019 11:21 by ADMIN
Release 2019.R2.SP.Next

Nested Menu items are not being expanded the first time that they are hovered:

https://dojo.telerik.com/EcEsoNAK

Completed
Last Updated: 02 Dec 2019 08:49 by ADMIN

I prepared a dojo example. https://dojo.telerik.com/oKIkuCaP

As can be seen from example, the MVVM context menu seems to ignore data-copy-anchor-styles option.

Current solution for us is to extend the kendo.ui.ContextMenu and set the copyAnchorStyles option to false.

Completed
Last Updated: 16 Sep 2019 14:23 by ADMIN
Release 2019.R3

Bug report

Defining a custom namespace with Kendo.ns stops the displaying of all submenus in the Menu component.

This is a regression represented in R2 2019

Reproduction of the problem

  1. Open this Dojo and run it.
  2. The Menu component is being rendered
  3. Move the mouse cursor over the Menu.
  4. A thin grey line appears under each section of the Menu. No submenus are being displayed

Expected/desired behavior

The Menu component should work properly even when a custom Kendo namespace is being defined. To see the expected behavior put a comment on the following line:
kendo.ns = "kendo-";

Environment

  • Kendo UI version: 2019.2.619
  • jQuery version: x.y
  • 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: 05 Feb 2019 14:34 by ADMIN
Created by: Shawn
Comments: 1
Category: Menu
Type: Feature Request
0
Please fix your demo page.
https://demos.telerik.com/kendo-ui/menu/context-menu

I'm showing a js error and am not able to see the demo work.  Thanks!
Completed
Last Updated: 28 May 2021 15:50 by ADMIN
Release 2021.R2.SP.next
Created by: Anna
Comments: 1
Category: Menu
Type: Bug Report
0

The contextMenu is not acessible. Upon opening, it should capture the keyboard focus and allow navigation by arrow keys, but it does not. (It can be observed here.)

Keyboard use of the contextMenu is also not documented. Keyboard use of the menu is documented here, while the contextMenu is separately documented here.

 

Completed
Last Updated: 11 Mar 2020 09:09 by ADMIN
Hi,

I'm using kendo context menu on a grid that's selectable, & contains links in its row items.

I need to show the custom context menu on selected rows only, without losing the browser's default context menu on the other rows, e.g. to allow opening the link in a new page.

I added a context menu & set the target & filter as follows:

$("#context-menu").kendoContextMenu({
        target: "#grid",
        filter: "tr.k-state-selected[role='row']",
        select: function(e) {
          var grid = $("#grid").data("kendoGrid");
          var model = grid.dataItem(e.target);
          alert( model.age + " " + model.name);
        }
      });

This works fine on desktop browsers (I tried Chrome & Firefox). However, I have a problem on touch devices: the browser's default context menu is never shown for non-selected rows (you can reproduce it using the browser's Emulator) .

Here's a working dojo :

http://dojo.telerik.com/oyASaDiN

You will notice that I'm using version 2017.3.1026 in this dojo (which is the version currently used by my company), but even if we consider an upgrade, the problem is also reproducible on the latest version (2019.3.1023). 



Please advise,
Completed
Last Updated: 22 Jan 2021 09:57 by ADMIN
Release 2021.R1.SP.next

### Bug report
Sub Menu item is not opened, if hovered before close animation of another sub-menu-items's child item completes.
Reported in ticket ID 1473199, where a reproduction video is available.

### Reproduction of the problem
1. Run the following [Dojo snippet](https://dojo.telerik.com/@Dimitar-Goshev/EfEmoCon)

1. Hover Item 1, then hover Sub Item 4

1. Hover Sub Item 41 to expand its sub item

1. Quickly move the mouse from SubItem 41 to Sub Item 4 text and then to Sub Item 3 text

### Current behavior
Sub Item 3 is NOT expanded and its child items are NOT visible

### Expected/desired behavior
Sub Item 3 is expanded and its child items are visible

### Environment
* **Kendo UI version:** 2020.2.617
* **Browser:** all