Completed
Last Updated: 21 Jun 2022 23:02 by ADMIN
ADMIN
Slav
Created on: 02 Feb 2016 17:28
Category: ColorPicker
Type: Bug Report
1
The tabs of the popup of RadColorPicker are partially visible on the screen when it needs to be kept in the boundaries of the browser's viewport for Lightweight rendering
When a Lightweight RadColorPicker has ShowIcon="true" and KeepInScreenBounds="true" configured, its tabs will be partially visible on the page.

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>

0 comments