Completed
Last Updated: 26 Feb 2015 14:09 by ADMIN
ADMIN
Misho
Created on: 18 Aug 2014 11:20
Category: Editor
Type: Feature Request
0
FIX: RadEditor wrapper height with ToolbarMode="RibbonBarFloating"
When ToolbarMode is set to "RibbonBarFloating" the RadEditor height becomes greater than the control height. As a result the wrapper overlaps with the elements box below.

As a temporary workaround for ToolbarMode="RibbonBarFloating" only, the following JavaScript code need to be applied on the page:

   <script type="text/javascript">
            (function () {
                var getToolbarHeight = Telerik.Web.UI.Editor.UI.DimensionsCalculator.prototype._getToolbarHeight;
                Telerik.Web.UI.Editor.UI.DimensionsCalculator.prototype._getToolbarHeight = function (container) {
                    var $container = $telerik.$(container);
                    $container.append($container.find("div"));
                    return getToolbarHeight.call(this, container);
                }
            })();
</script>
1 comment
ADMIN
Joana
Posted on: 26 Feb 2015 14:09
The issue will be fixed in Q1 2015 SP1