Unplanned
Last Updated: 10 May 2024 14:10 by ADMIN
Created by: Michael D
Comments: 6
Category: ColorPicker
Type: Bug Report
0
The Kendo UI ColorPicker's contrastTool shows the contrast ratios necessary to reach a certain accessibility level. While the current contrast ratio itself is localized, the thresholds for the AA and AAA levels are not. For languages like German, this means that for the ratio, "," is used as a decimal separator while the thresholds below use ".".
Completed
Last Updated: 02 May 2024 09:33 by ADMIN
Release 2024 Q2 (May)

Bug report

ColorPicker's value option is not taken with higher specificity.

Reproduction of the problem

  1. Open the following dojo.
  2. Set the value option of the widget.
  3. Notice that the color is not changed despite having the configuration set.

Current behavior

Currently, the ColorPicker requires setting the value={color} attribute to the input element. However, value option does not alter the input's value despite being set.

This behavior is inconsistent with other picker widgets where the value option is taken more predominantly:

https://dojo.telerik.com/@alexander64836/UNeMajeG/3

Expected/desired behavior

The ColorPicker should take the value option with higher specificity. Even in scenarios where the value={color} attribute is present on the input.

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Completed
Last Updated: 31 Oct 2022 08:53 by ADMIN
Created by: Anthony
Comments: 1
Category: ColorPicker
Type: Bug Report
0

Bug report

The slider in the ColorPicker popup, when used in Mobile Application, is not styled correctly.

Reproduction of the problem

  1. Open this example - https://dojo.telerik.com/EfiQUGad/10
  2. Open the ColorPicker.

Current behavior

The slider is not styled.

Expected/desired behavior

The slider in the popup should be displayed appropriately.

Environment

  • Kendo UI version: 2022.2.621
  • Browser: [all]
Unplanned
Last Updated: 25 Aug 2022 10:46 by ADMIN

Test Environment:

OS: Windows_11
Version: 21H2
OS Build: 22000.795

Browser: Version 103.0.1264.71 (Official Build) (64-bit)

Prerequisite steps:

1. Go to system settings.

2. Navigate to 'Accessibility' and activate it.

3. Navigate to 'Contrast theme' and activate it.

4. Select 'Desert/Aquatic' High Contrast theme in the combo box.

Repro Steps:

1. Open given URL https://demos.telerik.com/kendo-ui/colorpicker/index?_ga=2.176601965.933052354.1656022269-1325185890.1643853544 in Edge Browser.

2. Navigate to ‘Edit’ button using tab key and activate it.

3.Observe that issue.

Actual Behavior:

The Color for each series isn't shown in the Series legend or when Editing the series, but the graph does show the series colored correctly. Occurs in both Aquatic (High Contrast Black) and Desert (High Contrast White) modes.

Expected Behavior:

The series colors and color picker should be visible in both high contrast modes.

 

Completed
Last Updated: 04 Nov 2021 13:16 by ADMIN
Created by: Imported User
Comments: 3
Category: ColorPicker
Type: Feature Request
7
ColorPicker must have an option to revert to "Default color" (set color to null)
Completed
Last Updated: 04 Nov 2021 12:33 by ADMIN
Created by: Dan
Comments: 1
Category: ColorPicker
Type: Feature Request
0

The color picker right now support only to display the HEX format or RGBA format. The color picker should also support RGB.

Our customer is used to using the RGB format and wants to use that format. The reason we do not want RGBA is that the color picker could use opacity and the selected color will be used in a report so opacity has to be always 1.

We tried to prevent the use of a different opacity but could not find a solution.

Completed
Last Updated: 04 Nov 2021 12:32 by ADMIN
Created by: Seuthes
Comments: 4
Category: ColorPicker
Type: Feature Request
1
It would be really nice, if you could combine the color picker with the palette. When the user then opens the color picker, he has the ability to select a custom color, but also to select quickly a predefined color. This would improve the users worklflow nicely.
Declined
Last Updated: 09 Jul 2020 12:21 by ADMIN
Unplanned
Last Updated: 25 Feb 2020 13:11 by ADMIN
I was working with Kendo ColorPicker and ColorPalette and I created a widget for serenity. Everything works perfect, except at the constructor time, I do not know the color. This is how is working now...

        // [KendoColorPickerEditor(Columns=2, Palette = "['#000', '#333', '#666', '#999', '#ccc', '#fff']",Buttons =true,Preview =true)]
        //Palette : "basic" | "websafe" | "['#000', '#333', '#666'] or leave blank"
        [KendoColorPickerEditor( Buttons = true, Preview = true)]
        public String Color
        {
            get { return Fields.Color[this]; }
            set { Fields.Color[this] = value; }
        }

A refresh method is needed to reload the properties changed after constructor...like the "Color" property