[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-27 Thread Sean O
Here's a great article I read recently on implementing undo (enhanced from original post, based on reader inputs): http://humanized.com/weblog/2007/09/21/undo-made-easy-with-ajax-part-15/ Demo: http://humanized.com/weblog/images/resources/undo/todo_sync.html Source (using jQuery, natch): http:/

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-26 Thread John Beppu
That's pretty cool. Very impressive work, and your implementation is clean, too. On 9/24/07, Michael Geary <[EMAIL PROTECTED]> wrote: > > > OK, here is the client-side undo plugin demo that I mentioned earlier: > > http://mg.to/znc/colortuner.html > >

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-25 Thread Webbie Master
sdsdfsdfds > Date: Mon, 24 Sep 2007 22:08:06 +0200> From: [EMAIL PROTECTED]> To: > jquery-en@googlegroups.com> Subject: [jQuery] Re: an "Undo" plugin, or > something as such. :-)> > > Steve Finkelstein schrieb:> > Hi all,> >> > I was >

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-25 Thread Jörn Zaefferer
Michael Geary schrieb: I'll tidy up the undo code to make a nice plugin release out of it, but there it is in case anyone wants to take a look at it now. I'd be interested in any feedback on the issues I mentioned in my previous message. (I'd mentioned saving the undo/redo queue in a hidden fo

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Michael Geary
OK, here is the client-side undo plugin demo that I mentioned earlier: http://mg.to/znc/colortuner.html This is the color tuner from the Zvents Network Calendar wizard. Normally you would get to the color tuner by going to a venue page or your MyZvents page on www.zvents.com and then clicking "

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Michael Geary
> > > From: Steve Finkelstein > > > I was curious if there is anyone currently working on > > > an 'Undo' type plugin for the jQuery platform. Essentially, > > > similar functionality to what gmail offers is desired by > > > many. If not in the works, I wouldn't mind giving it a > > > shot myself.

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread John Beppu
In response to the original poster... Even if you just want a purely client-side undo mechanism (that delayed sending to the server until you're ready), you'd need to maintain some kind of event queue. That kind of thing tends to be very app-specific, and it's hard thing to generalize w/o definin

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Jörn Zaefferer
Steve Finkelstein schrieb: Hi all, I was curious if there is anyone currently working on an 'Undo' type plugin for the jQuery platform. Essentially, similar functionality to what gmail offers is desired by many. If not in the works, I wouldn't mind giving it a shot myself. Implementing an un