Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have Farbtastic in a form with many color inputs.

I want the color wheel to stay fixed in the window, son I can scroll through the form maintaining the wheel in the same place.

I tried css position:fixed, but it alters the coordinates system of the picker, so picking colors is impossible.

Any ideas? other color pickers pops from the click, but I do not know if it can be done with Farbtastic because of the coordinates system.

Regards: Migue

share|improve this question
position:fixed works fine for me: jsfiddle.net/gilly3/K8bDE. Post a jsfiddle or adequate code to reproduce the issue. – gilly3 Feb 21 '12 at 0:31

1 Answer

You have the solution here : http://code.google.com/p/farbtastic/issues/detail?id=3

Line 163 your must add this with your #elementId:

pos.x -= + $('#elementId').scrollLeft();
pos.y -= + $('#elementId').scrollTop();
share|improve this answer
Thank you. Still not working. The picker scrolls, but clicking on it doesn't get the right values. – MIguelele Oct 29 '12 at 19:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.