Declined
Last Updated: 20 Dec 2019 12:31 by ADMIN
Julie
Created on: 22 Sep 2016 13:37
Category: Editor
Type: Feature Request
2
colorpicker Hint/Name for colours
The colour picker palette should be capable of accepting name value pairs. This way, the colours can be named or given a hint which shows as a tooltip to help users choose which colour to use. Very helpful when we allow users to create a list of colours which could be subtly different and only a hint would easily differentiate them.
2 comments
ADMIN
Ivan Danchev
Posted on: 20 Dec 2019 12:31

Hello Julie,

We are closing this feature request due to low interest.

Regards,
Ivan Danchev
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Julie
Posted on: 19 Jan 2017 10:11
I found a work-around which has solved our problem for now. We have 2 arrays - one for the colours and one for the hints. We loop through one array and use jQuery to find the td element in the colour picker and assign it a title attribute.

 $.each(hints, function(i,value){

            $(".palette-color-chooser").find("td[aria-label='"+colours[i]+"']").attr("title",value);
        });