Completed
Last Updated: 29 May 2023 07:56 by ADMIN
Release 4.3.0 (06/07/2023) (R2 2023)

The problem is reproducible in your demo section: https://demos.telerik.com/blazor-ui/colorpicker/overview

I attached two short video clips showing the problem and the screenshots below.

Image 1: Open the Color Picker by clicking on it with the mouse. The picker dialog opens.

Image 2: Click with the mouse in the green area. You see a minor change in the RGBA fields, but no change in the color canvas.

Image 3: By clicking in the G field e.g. and changing the number with the down key from 46 to 45, the slider moves back to the blue area of it.

It seems to happen only with the first click onto the slider. With the second click and more it works like it should.

Best regards,
Hannes

Completed
Last Updated: 17 Oct 2022 11:54 by ADMIN
Release 3.7.0 (09 Nov 2022)

Inserting a hex-color code in the empty textbox of the color picker does not work. The color is not applied in the picker.
It only works if a color is already present in the textbox.

You can reproduce the bug on the demo site https://demos.telerik.com/blazor-ui/colorpicker/overview

  1. Open the color picker and clear the predefined color. Click apply.
  2. Open the color picker again with no predefined color.
  3. Insert any hex color code e.g. #f16812 into the textbox and click apply
  4. The picker closes but the color was not applied.

Best regards,
Hannes

Completed
Last Updated: 20 May 2022 09:25 by ADMIN
Release 3.4.0
Created by: Amanatios Amanatidis
Comments: 0
Category: ColorPicker
Type: Bug Report
0

When a culture that has comma for decimal separator is used, the ColorPicker formats the rgba() CSS rule as rgba(255,255,255,0,6) which is incorrect. The alpha value should always have a dot as a decimal separator.

<TelerikColorPicker @bind-Value="@value">

@code {
    public string Value { get; set; } = "#282f89";
}

Set the culture of the application so that the default decimal separator is a comma (el-GR).

// in Program.cs file
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("el-GR");
CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("el-GR");
Open the picker and set the value to the Alpha numeric textbox to 0,6. Apply the changes.

The rgba() rule is formatted as rgba(255, 255, 255, 0,6) but should be formatted as rgba(255, 255, 255, 0.6).