Completed
Last Updated: 13 Aug 2021 08:21 by ADMIN
Release R3 2016
Completed
Last Updated: 26 May 2016 08:51 by ADMIN
Unplanned
Last Updated: 07 Jun 2021 13:36 by ADMIN
Created by: Alejandro Genovesi
Comments: 1
Category: RibbonBar
Type: Bug Report
1
I have a RadRibbonBar with a RibbonBarMenu that contains a hierarchical menu item structure.

When clicking on an item (Parent, the main menu button is pressed and I have no way to make it return to the normal state.

The NavigateURL of the parent item is null (And even if it was not null, it still leaves me with the unusable RibbonBarMenu)

Here my code:

<body>
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager runat="server" ID="rsm"></telerik:RadScriptManager>
<telerik:RadRibbonBar ID="RadRibbonBarTest" runat="server" Width="100%"
    RenderMode="Lightweight"
    EnableMinimizing="true"
    RenderInactiveContextualTabGroups="False">
    <telerik:RibbonBarTab Text="Main Tab">
        <telerik:RibbonBarGroup Text="Operations">
            <Items>
                <telerik:RibbonBarMenu Size="Large" Text="New process"
                    ImageRenderingMode="Dual"
                    ID="RibbonBarMenuOptions" runat="server">
                    <Items>
                        <telerik:RibbonBarMenuItem Text="Parent 1">
                            <Items>
                                <telerik:RibbonBarMenuItem Text="Goto Google" NavigateUrl="https://www.google.com">
                                </telerik:RibbonBarMenuItem>
                                <telerik:RibbonBarMenuItem Text="Goto Telerik" NavigateUrl="https://www.telerik.com">
                                </telerik:RibbonBarMenuItem>
                            </Items>
                        </telerik:RibbonBarMenuItem>
                    </Items>
                </telerik:RibbonBarMenu>
            </Items>
        </telerik:RibbonBarGroup>
    </telerik:RibbonBarTab>
</telerik:RadRibbonBar>
</div>
</form>
</body>

Unplanned
Last Updated: 03 Jul 2020 11:58 by ADMIN

In lightweight the issue is not observed:

<telerik:RadRibbonBar runat="server" RenderMode="Classic">
    <Tabs>
        <telerik:RibbonBarTab Text="home">
            <%-- duplicate the group and items inside to replicate more easily --%>
            <telerik:RibbonBarGroup Text="Documents">
                <Items>
                    <telerik:RibbonBarButton Text="Item 1" />
                </Items>
            </telerik:RibbonBarGroup>
        </telerik:RibbonBarTab>
    </Tabs>
</telerik:RadRibbonBar>

Completed
Last Updated: 02 Jun 2017 15:06 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: RibbonBar
Type: Bug Report
1

			
Completed
Last Updated: 22 Dec 2015 09:51 by ADMIN
KeyboardNavigationSetting property Activated does not work, when set to True:
- JavaScript error thrown when KeyboardNavigationSetting Activated is set to true in Classic render mode.
- Nothing happens in Lightweight render mode.
Completed
Last Updated: 16 Sep 2015 12:48 by ADMIN
For the time being you can use the ApplicationMenu withing the RadRibbonBar control.
Completed
Last Updated: 03 Jul 2015 10:51 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: RibbonBar
Type: Bug Report
1

			
Completed
Last Updated: 24 Jun 2015 12:23 by Daniel Molnar
Completed
Last Updated: 14 Sep 2021 12:12 by ADMIN
Release Q3 2015
Completed
Last Updated: 11 Jun 2020 16:31 by ADMIN
Release R2 2020 SP1
ADMIN
Created by: Peter Milchev
Comments: 0
Category: RibbonBar
Type: Bug Report
0
Workaround: 

Telerik.Web.UI.RadToolBar.Views.Lite.prototype._repaint = function () {
    this._updateItemsTextAndImage();
    this._showAllHiddenItems();
    if (this._owner.get_orientation() == Telerik.Web.UI.Orientation.Horizontal) {
        this._responsiveCheck();
    }
}
Completed
Last Updated: 28 Mar 2019 10:20 by ADMIN
I have a lot of exceptions "This is an invalid webresource request" on URL:
Url: 
http://localhost:28346/WebResource.axd?d=pA8zoJJ2yE9oO6Ia28y3ulqgm2EN3siWz944xQWIIGBXVpgk0BapHVTl4shvvFk6xNdt4LtiZSHEyXvbblVt01x0HwUwNQaOMxMWgBjtZYGpgc8UslSNdkbp6cUlZ40ejI7_lKB_ojLYUsqy5MqXRvXtaiUCAP9m7jUF4h8I34ewKZ8vyOpjWEbtWAuKDJ9m0&t=635173510100000000
I decoded content of url:
Telerik.Web.UI.Skins|Telerik.Web.UI.Skins.Web20.Common.radGradientListSprite.png
Probably there is no radGradientListSprite.png for Web20 skin inside dll file.
Could you check it?
Regards...
Unplanned
Last Updated: 17 Jul 2018 15:05 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: RibbonBar
Type: Bug Report
0
Workaround: using the following handler for the OnClientLoad event of the RibbonBar

<script>
    function OnClientLoad(sender, args) {
        var oldHide = sender._hideMenus;
        sender._hideMenus = function () {
            var ribbonBar = this,
                visibleMenus = $telerik.$(sender.get_element()).find("." + ribbonBar._cssClasses._rrbMenuGroupOut).filter(":visible").get();
            for (i = 0, len = visibleMenus.length; i < len; i++) {
                var menu = visibleMenus[i];
                menu._button.removeClass("rrbExpanded");
            }
 
            oldHide.call(this)
        }
    }
</script>
Completed
Last Updated: 20 Jan 2017 14:32 by ADMIN
Completed
Last Updated: 19 Sep 2016 13:59 by ADMIN
Won't Fix
Last Updated: 27 Jun 2016 08:35 by Vinomanoharan
ADMIN
Created by: Boyan Dimitrov
Comments: 1
Category: RibbonBar
Type: Bug Report
0

			
Won't Fix
Last Updated: 19 Jan 2016 11:29 by ADMIN
Completed
Last Updated: 05 Oct 2015 11:17 by ADMIN
Completed
Last Updated: 05 Oct 2015 11:06 by ADMIN
1 2