[jquery-dev] Re: bind "drag" events

2008-10-06 Thread mike.helgeson
To anyone who was interested in this, I released another version (1.2) today to fix a pretty significant bug that was created in the previous release. The "dragProxy" event property was being set late causing incorrect behavior. http://plugins.jquery.com/node/4268 On Oct 4, 8:41 pm, "Jörn Zaef

[jquery-dev] Re: bind "drag" events

2008-10-06 Thread Jörn Zaefferer
Could you be a bit more specific why this should be preferred over jQuery UI's drag plugin, apart from your file-size argument? After all, a lot of effort has been spent on the UI components, they are fast, heavily customizable and very stable. Why should I start with a simple drag event and implem

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread Jörn Zaefferer
Thanks Mike for clarifying. It certainly would be interesting to know if jQuery UI could, with the 1.2.6 performance improvements, implement the ui.mouse stuff as custom events. Jörn On Sun, Oct 5, 2008 at 1:34 AM, mike.helgeson <[EMAIL PROTECTED]> wrote: > > I always told myself I had no interes

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread Brandon Aaron
On Sat, Oct 4, 2008 at 6:34 PM, mike.helgeson <[EMAIL PROTECTED]>wrote: > > Brandon, slightly off topic but related to drag/drop performance, Have > you gotten a chance to look at this? > > http://groups.google.com/group/jquery-dev/browse_thread/thread/a4becc9a5cc34fea > http://dev.jquery.com/ticke

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread mike.helgeson
I always told myself I had no interest in making a drag and drop plugin, but found a repeated code pattern in my own work, and had to explore making it re-usable. If people are happy with jQuery UI draggable and droppable, which is great, keep using it. I have found these drag events to be very us

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread Brandon Aaron
On Sat, Oct 4, 2008 at 2:03 PM, Yehuda Katz <[EMAIL PROTECTED]> wrote: > > According to Paul, implementing everything as a normal event became > prohibitively slow with large sets of draggables/droppables, which is why > certain things in their draggables are implemented as callbacks (for speed). >

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread Yehuda Katz
If there are conceptual reasons that this is preferred over jQuery UI's drag/drop, it probably makes sense to see if those concepts could be added to jQuery UI. jQuery UI's draggables are actually implemented modularly, so you can remove a fair bit of the extra functionality and be left with some b

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread weepy
> Why should I start with a simple drag event and implement everything else > from scratch? I would say that it allows for total flexibility - it kind of makes the 'drag' event work just like a normal event like 'click'. On 4 Oct, 14:10, weepy <[EMAIL PROTECTED]> wrote: > I used the old versi

[jquery-dev] Re: bind "drag" events

2008-10-04 Thread weepy
I used the old version and found it to be very good. Very simple - it simply provides the hooks for you to implement what you need. I would like to know what's changed since the old version ? On 4 Oct, 10:45, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Could you be a bit more specific why t