Completed
Last Updated: 31 Aug 2023 11:27 by ADMIN
Release R3 2023
Created by: Bill O'Neil
Comments: 0
Category: Menu
Type: Feature Request
1

Rendering and tabbing through the menus goes well BUT - the following was reported:

  • With NVDA/Firefox, while the menu item names (File, Edit, View) are announced, but nothing is announced that lets me know that I can expand them to hear more. Usually the space and enter key are used to toggle menus, but neither of those do anything.
  • With NVDA/Chrome, I get the same experience.
  • With JAWS/Chrome, I hear some more info: when I’m on File, I hear File alt plus F (then Edit alt plus E, View alt plus V). It seems like the latter two of these open up the menu visually, but I’m not able to navigate to any of the items with my keyboard or hear them with my screen reader.

The BIG issue seems to be the lack of indication that a SubMenu exists - is this a known issue?  Am I not enabling something I should be?

Current RadMenu config:

  <telerik:RadMenu AriaSettings-Label="Manage a Business Menu" runat="server" ID="m" Width="100%" Skin="Simple" Flow="Horizontal" RenderMode="Lightweight"
                EnableAriaSupport="true" CausesValidation="false" EnableOverlay="false">
                <KeyboardNavigationSettings CommandKey="Alt" FocusKey="M" />
            </telerik:RadMenu>    

Completed
Last Updated: 27 Nov 2019 12:15 by ADMIN
Release R1 2020

RadContextMenu does not appear when there are more than one forms on the page and one of them is hidden. 

Steps to reproduce:

  1. Right click on the table in RadEditor
  2. The menu will not pop up.

 

<!DOCTYPE html>
<%@ Register Namespace="Telerik.Web.UI.Debug" TagPrefix="debug" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>

<body>
    <form id="searchform" style="display:none">aaa</form>
    <form id="form1" runat="server">
        <asp:ScriptManager runat="server" />

        <telerik:RadEditor ID="radEditor1" runat="server">
            <Content>
                <table>
                    <tbody>
                        <tr>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                        </tr>
                        <tr>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                        </tr>
                    </tbody>
                </table>
                <br />
            </Content>
        </telerik:RadEditor>

    </form>
</body>
</html>

Completed
Last Updated: 30 Apr 2020 08:59 by ADMIN

Hi,

I use the RadContextMenu control (ajax).  When I right-click a control to show the menu, the OnClientShowing or On ClientItemClicked events are fired.

Within this, I can get the html element that has been clicked, but what I really need is a reference to the actual control that was clicked.  For example, I have a checkbox on my page and the user can right-click the text on the checkbox, OR the check-box itself.  This makes it really tough to determine what the actual control was that was clicked (in this case, the RadCheckBox).

I thought it would be a cool idea to be able to get this control as part of the args for the event.

 

 

Tom.

Completed
Last Updated: 12 Feb 2018 03:33 by Dex
ADMIN
Created by: Peter Milchev
Comments: 5
Category: Menu
Type: Bug Report
11
Video:
https://www.screencast.com/t/lyemH3IjT 

JavaScript error "unable to get property 'handleEvent' of undefined or null reference" from Telerik.Web.Ui.WebResource.axd is thrown.


Completed
Last Updated: 25 Apr 2017 13:57 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: Menu
Type: Bug Report
1

			
Completed
Last Updated: 26 May 2017 14:09 by ADMIN
Go to http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/rendermodes/defaultcs.aspx?Skin=Glow

Switch to RenderMode="Classic" and select some menu item. It will become gray colorized instead of yellow. The gradient should be removed.

Workaround:
Put the following style on the page with the menu control:
    <style>
        .rmLink.rmSelected { background-color: #db9810 !important; }
    </style>
Completed
Last Updated: 25 Apr 2017 14:15 by ADMIN
Completed
Last Updated: 10 Oct 2016 07:45 by ADMIN
Completed
Last Updated: 02 Jun 2016 13:50 by ADMIN
Completed
Last Updated: 30 May 2016 12:09 by ADMIN
Completed
Last Updated: 04 Apr 2016 13:17 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: Menu
Type: Bug Report
0

			
Completed
Last Updated: 23 Feb 2016 17:04 by ADMIN
Completed
Last Updated: 01 Feb 2016 13:27 by ADMIN
Completed
Last Updated: 22 Dec 2015 11:28 by ADMIN
Completed
Last Updated: 26 Feb 2016 12:36 by ADMIN
Completed
Last Updated: 20 Jun 2022 14:43 by ADMIN
Completed
Last Updated: 03 Oct 2016 14:40 by ADMIN
Workaround:

function OnClientItemClicking(sender, eventArgs) {
	if ($telerik.isTouchDevice) {
		if (eventArgs.get_item().get_postBack()) {
			$telerik.$('.rmRootToggle').trigger('touchend');
		}
	}
}
Completed
Last Updated: 10 Aug 2021 13:43 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: Menu
Type: Bug Report
0

			
Completed
Last Updated: 06 Nov 2015 07:49 by Elena
Created by: Andre Light
Comments: 1
Category: Menu
Type: Feature Request
1
While it is possible to set the item image using the item's CssClass property (http://www.telerik.com/help/aspnet-ajax/menu-appearance-item-images.html), it would be great to be able to set that directly to the span element with class rmLeftImage.

Otherwise, it's necessary to use JavaScript or a CSS pre-processor like LESS to assign font-based images via classes (LESS would be required only to avoid duplicating CSS).

The same would apply to just about any control that supports item images, e.g. TreeView.
1 2