Hi, I had the same problems but there are workarounds in 1.6 rc2.

As for the IE issue, it is because of an error in the html that is
appended to the body. Download the rc2 full zip and in the
jquery.ui.all.js, find line 5719. That is the picker's html. It is
missing a closing bracket on one of the label tags: '<label for="ui-
colorpicker-rgb-b"</label>' -> '<label for="ui-colorpicker-rgb-b"></
label>'. After making that change it wont scatter textboxes all over
the page, but the picker is not pretty (in IE) and you will have to do
a little css work.

as for the second, I dont know.

The close trigger is exposed (in rc2 anyway). It is called submit.
This code works for me with 1.6rc2:

$('#selector').colorpicker({
    color: myColor,
    submit: function(e, ui){
        callBack($(this), ui.hex);
        $(this).data("colorpicker").picker.hide();
    }
});

Now, FWIW, I tried including the http://ui.jquery.com/ui.js file, and
my submit function was NOT called, but it was visually fixed in IE.

Ben

On Oct 8, 11:22 am, halkeye <[EMAIL PROTECTED]> wrote:
> Since the bug tracker is down I am bringing up the issues on the
> mailing list.
>
> So far I think the color picker is just fantastic but I have some
> minor issues.
>
> Firstly, the color picker doesn't work at all in IE. Even the
> functional demos do not render properly. Throws up a random button in
> the middle of the screen (before the colorpicker is even triggered).
>
> Secondly, you are unable to enter F's in the hex code section of the
> picker. And even if you do enter a color it just reverts to the
> previous value.
>
> Thirdly, the close/blur trigger is not exposed. There is no way to
> make the picker go away when you click the done button.
>
> Are there any known workarounds or fixes for any of these issues?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to