I'm not understand comment http://dev.jqueryui.com/ticket/4333#comment:17
The bug does not exist any more in 1.7+? I did not check. If the bug
does not exist, in what it consisted?
My solution for this bug:

$.ui.mouse = {
        .................
        _mouseDown: function(event) {
                .................
                if ($(event).data('mouseHandled')) { return; } //if
(event.originalEvent.mouseHandled) { return; }
                .................
                $(event).data('mouseHandled', true); //
event.originalEvent.mouseHandled = true;
                return true;
        },

        .................
        _mouseUp: function(event) {
        .................
                $(event).data('mouseHandled', false);
                return false;
        },

But Scott González not sure that it will be work, because jQuery UI
have to use event.originalEvent because when the event is generated by
the browser and it bubbles, jQuery creates a new event object for
every element that the event bubbles through.

On Sep 9, 8:04 pm, Jim Auldridge <[email protected]> wrote:
> Thanks for the info, we're trying the solution now.  Any idea on when
> a real fix for this is due...sucks that the patch is relying on
> $.browser
>
> Thanks,
> Jim
>
>
>
> On Wed, Sep 9, 2009 at 6:13 AM, Titkov Anton<[email protected]> wrote:
>
> > Look at that ticket
> >http://dev.jqueryui.com/ticket/4333#comment:10
>
> > On Sep 9, 3:38 am, "Jim (JAAulde)" <[email protected]> wrote:
> >> Hi Gang...complicated drag'n'drop issue here.  We have a draggable
> >> which contains a droppable.  When you drop a draggable onto the inner
> >> droppable, and then decide you want to move that dropped draggable,
> >> the drag of the inner takes the outer with it.  This only occurs in IE
> >> (tested 6 and 7) Any thoughts on how to stop this?
>
> >> Thanks,
> >> Jim
>
> --
> Jim Auldridge
>   11012 Lincoln Ave
>   Hagerstown MD 21740
>   301.582.9050 (h)
>   240.520.0240 (m)
>  http://www.auldridges.com
>
> Religion that is pure and undefiled before God, the Father, is this:
> to visit orphans and widows in their affliction, and to keep oneself
> unstained from the world.
> --James 1:27 (ESV)
--~--~---------~--~----~------------~-------~--~----~
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