Duplicated
Last Updated: 21 Jun 2022 23:03 by ADMIN
ADMIN
Slav
Created on: 05 Feb 2016 16:42
Category: ColorPicker
Type: Bug Report
1
The method set_keepInScreenBounds of RadColorPicker does not update the position of the popup correctly
When the set_keepInScreenBounds method is called and you pass a true parameter, the popup of RadColorPicker is only partially visible (the tabs are hidden). 
1 comment
ADMIN
Rumen
Posted on: 21 Jun 2022 23:03
The following solution can be used:

        <script>
            Telerik.Web.UI.ColorPicker.LightweightRenderer.prototype.getPaletteHeight = function ($palette) {
                var paletteHeight = $palette.height() +
                    $palette.find(".rcpTabs").height();
                return paletteHeight;
            }
        </script>