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: 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>
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