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.
Hello Julie,
We are closing this feature request due to low interest.
Regards,
Ivan Danchev
Progress Telerik
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); });