Completed
Last Updated: 17 Mar 2015 08:05 by zAxis
Created by: zAxis
Comments: 0
Category: ColorPicker
Type: Bug Report
1
Setting RenderMode=Native doesn't work correctly in IE11.
Completed
Last Updated: 15 Jul 2016 13:20 by ADMIN
Currently when the ShowIcon property of RadColorPicker is set to true and the controls does not have a selected color, a white color is displayed in the icon button. The expected behavior in this case would be to indicate that no color is selected, perhaps by displaying an image, similar to the one in the No Color button.
Completed
Last Updated: 22 Feb 2022 14:48 by ADMIN
Possible workarounds:

-set display: inline-block to the control wrapper -.RadColorPicker {display: inline-block;}

- use Classic RenderMode

- improve the z-index and backgrounds of the anchor:

		div.RadColorPicker.lwr div.rcpIcon a,
		div.RadColorPicker.lwr div.rcpIcon a:hover
		{
			z-index: 11;
			background-color: transparent;
			background-image: none;
		}

where the lwr class is to be added from the server code to avoid breaking the Classic render mode:

	protected void Page_Load(object sender, EventArgs e)
	{
		if (RadColorPicker1.RenderMode == Telerik.Web.UI.RenderMode.Lightweight)
		{
			RadColorPicker1.CssClass = "lwr";
		}
	}
Completed
Last Updated: 21 Jun 2022 23:02 by ADMIN
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>

Completed
Last Updated: 11 Aug 2021 19:00 by ADMIN
Created by: Yousef Salimpour
Comments: 1
Category: ColorPicker
Type: Bug Report
0
ColorPicker Causes unwanted scrollbar in page if It is used in a RTL page.
It's because of setting palleteWrapper.style.left to -9999px in hidePalette function in RadColorPicker.js.
It can be fixed if you set palleteWrapper.style.left to something like 0 or 50%. It will be out of page due to -9999px as top value anyway.
Completed
Last Updated: 08 Jun 2022 08:22 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 0
Category: ColorPicker
Type: Bug Report
0