Completed
Last Updated: 23 Mar 2015 11:52 by Vladimir
Hello,

I found issue that RibbonBarClickableItem has not specified UrlProperty attribute for DisabledImageUrl and DisabledImageUrlLarge properties

So when I'm using relative url path in skin files the computed url is wrong. It is relative to path where control is used instead of relative in theme folder.

Thanks Vlad
Declined
Last Updated: 26 Jul 2016 08:37 by ADMIN
Created by: Caleb Sandfort
Comments: 1
Category: RibbonBar
Type: Feature Request
0
Add Track/Commit changes for RadRibbonBar like RadTreeView has.  Currently enabling/disabling a ribbon bar item client side throws an error and blows up when a postback occurs after the client side change.
Completed
Last Updated: 14 Sep 2021 12:12 by ADMIN
Release Q3 2015
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

			
Completed
Last Updated: 24 Jun 2015 12:57 by ADMIN
Completed
Last Updated: 24 Jun 2015 13:14 by ADMIN
Declined
Last Updated: 04 Apr 2022 14:55 by ADMIN
ADMIN
Created by: Magdalena
Comments: 1
Category: RibbonBar
Type: Feature Request
0
When a ToolTip of the RibbonBar is opened, it should cover external applets / plugins, such as JavaApplets, PDF, Flash etc, it's not rendered on top, but beneath.
Completed
Last Updated: 24 Jun 2015 13:50 by ADMIN
Completed
Last Updated: 19 Sep 2016 13:59 by ADMIN
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
Won't Fix
Last Updated: 19 Jan 2016 11:29 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();
    }
}
Unplanned
Last Updated: 25 Nov 2020 12:33 by ADMIN
Created by: Albert Shenker
Comments: 1
Category: RibbonBar
Type: Feature Request
0

When the ImageUrl or ImageUrlLarge property is set and a button is disabled, it should show the ImageUrl or ImageUrlLarge image instead of a non-descript "x" image. This should be the default behavior when the DisabledImageUrl and DisabledImageUrlLarge proeprties are not set. I have created some javascript which accomplishes this, however this is really overkill and is as always subject to breakage if you change the control. I'm not sure why you guys decided your random "X" image would be a better indicator of a disabled button than the original image.

 

function setRibbonDisabledImages(ribbonBar) {

        var tabs = ribbonBar.get_tabs();

        for (i = 0; i < tabs.get_count(); i++) {

            var tab = tabs.getTab(i);

            var groups = tab.get_groups();

            for (j = 0; j < groups.get_count(); j++) {

                var group = groups.getGroup(j);
                var items = group.get_items();

                for (k = 0; k < items.get_count(); k++) {

                    var item = items.getItem(k);

                    if (item.get_imageUrl()) {
                        item.set_disabledImageUrl(item.get_imageUrl());
                    }
                    if (item.get_imageUrlLarge()) {
                        item.set_disabledImageUrlLarge(item.get_imageUrlLarge());
                    }

                }

            }

        }

    }

 

1 2