[jQuery] Re: Using animate within an IFrame

2007-11-29 Thread Luciano G. Panaro
I think what's going on is that you are trying to access a dom element of the Iframe doc, and AFAIK you can't do that directly with jQuery selectors. However I found a discussion where this is solved: http://groups.google.com/group/jquery-en/browse_thread/thread/744ba7fdabd9066a/d060e3f85c3bdbd8

[jQuery] Re: Edit database rows

2007-11-22 Thread Luciano G. Panaro
I don't know the details of configuration, but that plugin includes in its features list: * Inline row edit. I guess it explains in http://creamarketing.net/Products/jqGridView/tabid/56/Default.aspx the steps needed to make the ajax call when editing a row. On 22 nov, 07:06, "Kaare Rasmussen" <

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-21 Thread Luciano G. Panaro
On Nov 21, 6:17 pm, polyrhythmic <[EMAIL PROTECTED]> wrote: > Ahh, very cool. > > Thanks! > > Charles > > On Nov 20, 3:31 pm, "Luciano G. Panaro" <[EMAIL PROTECTED]> > wrote: > > > jQuery's core queueing method does it only for the selected

[jQuery] Re: Edit database rows

2007-11-21 Thread Luciano G. Panaro
Hi, Actually you will need something in the middle, that is, an exposed page (PHP, ASP, whatever) that would act as a proxy of your postgres database. That way, the jquery plugin will be able to access that page when trying to create / edit / update rows. Hope it helps! Luciano. On Nov 21, 6:39

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-20 Thread Luciano G. Panaro
jQuery's core queueing method does it only for the selected element. But when you want to do it for different elements (first fade in #1, then slide down #2, etc.), you need to do it by passing callbacks to each animation. This plugin does something similar to what there is already in jQuery, but

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-20 Thread Luciano G. Panaro
Regarding the 7-8 issue, I've just noticed that. I'll be fixing it today I guess =) But the 8 moving when 3 or 4 is a bit odd, since the "animate" for that element is not launched yet (well, at least it shouldn't be launched =P). Thanks Ethan! On Nov 19, 10:30 pm, bigethan <[EMAIL PROTECTED]> wr

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-19 Thread Luciano G. Panaro
.. a bit > esoteric. > IMO, you should shorten the name of methods a bit, to make more jQuery- > ish. > For example: jQuery.fxQueues.clearQueue, I'd remove the 'Queue' part, > as it is obvious what are you clearing. > Very nice. > > Ariel Flesler > > O

[jQuery] New Plugin: jQuery Fx Queues

2007-11-19 Thread Luciano G. Panaro
(Sorry if I'm double posting) Hi, I created a new plugin that reimplements the queueing system, allowing the possibility of having global queues for jquery's animations (similar to what Scriptaculous has). http://jquery.com/plugins/project/fxqueues http://www.decodeuri.com/jqueryfxqueues/ New