RGB color picker for Rails 3

Status . I am creating an application in which it is necessary to be a field accessible to the user for choosing a color, this field will contain a line of RGB color code.

I tested one that looks pretty, but it doesn't work very well. This is "picky-color" and is hosted on this repository: https://github.com/Astorsoft/picky-color . Here I open the problem with some problems.

Problem . Please suggest me choose a color set for use in the Rails 3 application.

+5
source share
2 answers

I chose jPicker , it was a good option for me.

+3
source

Perhaps the list on the jQuery UI Development: Color Picker page gives you the one that works out of the box. The reason for this is because jQuery is now included in Rails 3 applications, so using something based on Prototype or another JavaScript library is more complicated.

Integration in a ruby ​​does not have to be complicated.

+6
source

All Articles