Unplanned
Last Updated: 21 Oct 2020 07:06 by ADMIN

The issue can be reproduced in Chrome, Edge, FireFox.

Steps to replicate: In the browser, navigate to the RadToolBarButton and press enter. (click is not performed and events are not fired)

<script>    
    function buttonClicked(sender, args) {
        debugger;
    }
    function buttonClicking(sender, args) {
        debugger;
    }
</script>
<telerik:RadToolBar ID="RadToolBar1" runat="server" OnClientButtonClicked="buttonClicked" OnClientButtonClicking="buttonClicking">
    <Items>
        <telerik:RadToolBarButton Text="Button"></telerik:RadToolBarButton>
    </Items>
</telerik:RadToolBar>

Completed
Last Updated: 08 Sep 2020 13:06 by ADMIN
Release R3 2020
Cookie law loads a <form> tag before the <form> tag of the framework, hence the dropdown is placed in the hidden cookie form instead of the correct one.
Unplanned
Last Updated: 17 Aug 2018 11:53 by ADMIN
When an item with controls in the item template is collapsed, the AJAX settings are broken as the control's DOM element is moved because the MoreButton dropdown is not part of the Toolbar element itself. 

The solution is to set the overflow property of the item to Never - <telerik:RadToolBarButton OverFlow="Never"> 
https://docs.telerik.com/devtools/aspnet-ajax/controls/toolbar/mobile-support/responsive-design#preventing-items-from-being-collapsed
Won't Fix
Last Updated: 08 Jun 2022 07:37 by ADMIN
The click event of the toolbar is triggered only when the user clicks outside of the set button icon (the text or the button element). Clicking directly over the icon does not perform any action in IE11.

video: https://www.screencast.com/t/K50K4X8Ck

Code to reproduce:
            <telerik:RadToolBar runat="server" ID="ToolBar1">
                <Items>
                    <telerik:RadToolBarButton
                        ImageUrl="//d585tldpucybw.cloudfront.net/sfimages/default-source/labs/kendo/kendoka-states.png"
                        NavigateUrl="Default.aspx"
                        Text="Link"/>
                    <telerik:RadToolBarButton
                        ImageUrl="//d585tldpucybw.cloudfront.net/sfimages/default-source/labs/kendo/kendoka-states.png"
                        NavigateUrl="Default.aspx"/>
                </Items>
            </telerik:RadToolBar>
Completed
Last Updated: 17 Apr 2018 14:31 by ADMIN
REPRO

    Run the snippet below
    Inspect the DOM (at the beginning of the form you will see the .rtbSlide element)
    Click the toolbar button to invoke an ajax request

actual: the .rtbSlide element is multiplied with every request

expected: the toolbar is fully disposed

        <asp:UpdatePanel runat="server">
            <ContentTemplate>
                <telerik:RadToolBar RenderMode="Lightweight" ID="RadToolBar1" runat="server"
                    AutoPostBack="true">
                    <Items>
                        <telerik:RadToolBarButton Text="postback to test">
                        </telerik:RadToolBarButton>
                    </Items>
                </telerik:RadToolBar>
            </ContentTemplate>
        </asp:UpdatePanel>


WORKAROUND

        <script>
            var oldDispose = Telerik.Web.UI.RadToolBar.prototype.dispose;
            Telerik.Web.UI.RadToolBar.prototype.dispose = function()
            {
                if (this._moreButtonDropDown && typeof this._moreButtonDropDown.dispose == 'function') {
                    this._moreButtonDropDown.dispose();
                }
                oldDispose.call(this);
            }
        </script>
Unplanned
Last Updated: 06 Dec 2017 09:34 by ADMIN
Replicated only when Orientation=Vertical. The problem seems to be the _responsiveCheck function of Toolbar\Views\LiteView.js called from the _repaint method of the same file.

screencast: https://www.screencast.com/t/SF5b1KZR7pIp

screenshot before/after https://www.screencast.com/t/KG645ZgX

Workaround: calling toolbar.get_view()._showAllHiddenItems(); after adding programmatically the buttons.
Planned
Last Updated: 14 Jan 2022 11:03 by ADMIN
Scheduled for R1 2022 SP1
ADMIN
Created by: Peter Milchev
Comments: 0
Category: ToolBar
Type: Bug Report
0

			
Declined
Last Updated: 22 Jun 2022 10:55 by ADMIN
ADMIN
Created by: Ivan Danchev
Comments: 1
Category: ToolBar
Type: Bug Report
0

			
Won't Fix
Last Updated: 02 Dec 2015 12:10 by ADMIN
Won't Fix
Last Updated: 08 Jun 2022 08:19 by ADMIN

 <telerik:RadToolBar ID="toolbarRibbon" runat="server" Orientation="Horizontal" Width="100%" RenderMode="Lightweight"

           OnClientButtonClicking="OnClientButtonClicking"
          OnClientButtonClicked="OnClientButtonClicked">
        <Items>
            <telerik:RadToolBarButton ID="toolBtnAnalyses" runat="server"
                Text="Analyses"
                Visible="true" Target="_blank"
                NavigateUrl="About.aspx" 
                ImagePosition="AboveText" CheckOnClick="true" ImageUrl="Content/chart.png" />
              <telerik:RadToolBarButton ID="RadToolBarButton1" runat="server"
                Text="Analyses"
                Visible="true" 
                NavigateUrl="About.aspx" 
                ImagePosition="AboveText" CheckOnClick="true" ImageUrl="Content/chart.png" />
        </Items>
    </telerik:RadToolBar>

 

There is a workaround if the button's ImagePosition is set to "Left" or "Right":

.rtbImage {
    pointer-events: none;
}


			
Completed
Last Updated: 27 May 2015 07:00 by ADMIN
The disable buttons of RadToolbar do not appear as disabled under in IE7, IE8, and Chrome.
Completed
Last Updated: 16 Mar 2015 15:05 by ADMIN