[jQuery] [datepicker] double tab needed

2009-04-02 Thread Diego Plentz
Hey guys, Using datepicker in a field, it requires 2 tab taps to go to the next field, since: - when you enter in the field, the datepicker shows up - when you tap the first tab the datepicker hides. - when you tab tab the second time, only then the focus goes to the next field. Is there

[jQuery] [autocomplete] onselect handler

2009-03-30 Thread Diego Plentz
Hey guys, here I'm again. Is there a way to associate a callback function with the select event of an autocomplete? I want to do something like this: on select item from autocomplete, set the value of field x and hide div xpto. I looked at the format* callbacks, but it won't work in my case. Any

[jQuery] Re: [autocomplete] jquery + dwr

2009-03-25 Thread Diego Plentz
it a try and let us know if it works for you: http://jquery-ui.googlecode.com/svn/branches/dev/autocomplete/ http://jqueryui.pbwiki.com/SelectComboboxAutocomplete Jörn On Tue, Mar 24, 2009 at 10:39 PM, Diego Plentz diego.pi...@gmail.com wrote: Hey guys, I'm using jquery + autocomplete

[jQuery] Re: [autocomplete] jquery + dwr

2009-03-25 Thread Diego Plentz
: Ah, sorry. source expects a synchronous return as well, doesn't help at all in this case. Jörn On Wed, Mar 25, 2009 at 2:24 PM, Diego Plentz diego.pi...@gmail.com wrote: Thanks Jörn. Btw, the problem still here, because even if I do something like that: $(#city).autocomplete

[jQuery] [autocomplete] jquery + dwr

2009-03-24 Thread Diego Plentz
Hey guys, I'm using jquery + autocomplete plugin (by Jörn) and I trying to make it work with DWR(http://directwebremoting.org/). My problem is that jquery autocomplete takes a url or data directly, but to make DWR works properly, I must use their javascript functions and handle the callback. Here