Completed
Last Updated: 05 Oct 2015 10:57 by ADMIN
ADMIN
Created by: Ivan Danchev
Comments: 0
Category: RibbonBar
Type: Bug Report
0

			
Completed
Last Updated: 05 Oct 2015 11:06 by ADMIN
Completed
Last Updated: 05 Oct 2015 11:17 by ADMIN
Completed
Last Updated: 20 Jan 2017 14:32 by ADMIN
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: 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();
    }
}
Won't Fix
Last Updated: 19 Jan 2016 11:29 by ADMIN
1 2