Completed
Last Updated: 02 Dec 2021 16:14 by ADMIN
Release R1 2022
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ToolBar
Type: Feature Request
21

			
Completed
Last Updated: 16 Mar 2015 15:05 by ADMIN
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: 22 Aug 2013 14:33 by ADMIN
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.
Completed
Last Updated: 23 Oct 2017 20:34 by Virgil Rodriguez
ADMIN
Created by: Peter Filipov
Comments: 3
Category: ToolBar
Type: Feature Request
0
In order to prevent clicking on the same button twice, when server-side click button is handled, the RadToolBar should be disabled or the clicked button. For that reason we are going to expose the following property:
SingleClick = None/Button/ToolBar.

In case that you want SingleClick property on RadToolBarButton, please leave us a comment with your feedback.
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>