Completed
Last Updated: 01 Mar 2023 13:34 by ADMIN
Release R2.2023-Increment.1(15.Mar.2023)

Bug report

Reproduction of the problem

Compare the renderings of the two ContextMenus below:

<div id="example1">Right click (Kendo UI ContextMenu)</div>
<br />
<br />
<div id="example2">Right click (MVC ContextMenu)</div>

<ul id="contextmenu1">
</ul>
<script>
    $("#contextmenu1").kendoContextMenu({
        target: "#example1",
        dataSource:
            [{
                text: "Item1",
            },
            {
                text: "Item2",
            }
        ]
    });
</script>


@(Html.Kendo().ContextMenu()
    .Name("contextmenu2")
    .Target("#example2")
    .Items(items =>
    {
        items.Add().Text("Item1");
        items.Add().Text("Item2");
    })
)

Current behavior

The item of the Kendo UI ContextMenu is rendered:

<li class="k-item k-menu-item k-first" role="menuitem" data-uid="d578b533-6933-416f-9624-96819ee95c45" aria-expanded="false">
    <span class="k-link k-menu-link">
       <span class="k-menu-link-text">Item1</span>
    </span>
</li>

The item of the MVC ContextMenu is rendered:

<li class="k-item k-state-default k-menu-item k-first" role="menuitem" aria-expanded="false" id="contextmenu2_mn_active">
     <span class="k-link k-menu-link">Item1</span>
</li>

The additional span with class k-menu-link-text is missing in the MVC component.

Expected/desired behavior

Identical rendering

Environment

  • Kendo UI version: 2023.1.117
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 22 Nov 2021 10:19 by ADMIN
Created by: Christophe
Comments: 2
Category: Menu
Type: Feature Request
1

Hello,

The copyAnchorStyles option of the ContextMenu Widget is not available in MVC wrapper. It's not always suitable to retrieve the anchor style and this option is enabled by default.

I've found a workaround thanks to another thread related to this particular option, but the best solution would have been to be able to set it directly with the wrapper.

The workaround consist to override the default value of this option for all ContextMenu widget (or I believe that's what it does):

https://feedback.telerik.com/kendo-jquery-ui/1413111-contextmenu-in-mvvm-form-does-not-set-the-copyanchorstyles-option

<script>
  kendo.ui.ContextMenu.fn.options.copyAnchorStyles = false;
</script>

 

Thank you for your time.

Declined
Last Updated: 10 Jun 2021 10:35 by ADMIN
Created by: Saurabh
Comments: 0
Category: Menu
Type: Feature Request
0
Implement multiple selection in the ContextMenu
Unplanned
Last Updated: 05 Mar 2020 08:44 by ADMIN

Hello,

I have problem with menu control. Sometimes its items are duplicated. To reproduce it do the following: 

- create a menu control;

- bind it to remote data source (to reproduce issue easier set some delay for server side method);

- hover on menu item (datasource request will start), fast leave menu item (don't wait until it open) and hover again (one more datasource request will start), leave it again (optional);

- wait some time until second request completed;

- open menu item.

As a result you will see duplicated menu items. This issue can be reproduced on your demo page https://demos.telerik.com/kendo-ui/menu/remote-data-binding.

Could you please suggest me some workaround for this?

 

BR,

Artsem