Re: jQuery/autocomplete

2015-04-27 Thread Geoff Callender
Good points, Lance. Yes I will consider adding those features to JumpStart, and at the very least I will add a link to Observe. Thanks. On 27 Apr 2015, at 7:37 pm, Lance Java lance.j...@googlemail.com wrote: Hi Geoff, as stated on the demo, the observe mixin was inspired by zone updater but

Re: jQuery/autocomplete

2015-04-27 Thread Lance Java
Hi Geoff, as stated on the demo, the observe mixin was inspired by zone updater but with a few very handy differences: 1. Developers don't need to deal with request parameters. These are converted to more user friendly event arguments. 2. You can pass multiple clientside field values. In the

Re: jQuery/autocomplete

2015-04-27 Thread Lance Java
Is your autocomplete a select component? If so you can set the 'zone' attribute and handle the 'onChanged' event to update the zone. There's also the observe mixin from tapestry-stitch ( http://t5stitch-lazan.rhcloud.com/observedemo). Note: This will require a javascript tweak to work with jquery

Re: jQuery/autocomplete

2015-04-27 Thread Geoff Callender
I realise this question doesn't relate to T5.4 but, for anyone who's searching the mailing list, here's a way to handle the same thing in T5.4. t:textfield t:id=personName placeholder=message:search-placeholder t:mixins=autocomplete,zoneupdater zoneUpdater.clientEvent=typeahead:selected

jQuery/autocomplete

2015-04-26 Thread David Tio
Hi All, I need help with tapestry jQuery/autocomplete. I want to fill up another field based on the selection on jQuery/autocomplete textfield. What's the best way to perform such action? The only event available seems to be provideCompletions Regards, David Tio

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-10 Thread François Facon
users Sent: Saturday, November 09, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true This is weird, and I can't find what causes the error. If JQuerySymbolConstants.SUPPRESS_PROTOTYPE is set to true

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-10 Thread Ilya Obshadko
To: Tapestry users Sent: Saturday, November 09, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true This is weird, and I can't find what causes the error

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread François Facon
May be another javascript function redefined the hover event handler. what version do you use? any javascript console error? to diagnose this type of problem, you can disable other components one by one. could you share your .tml? 2013/11/9 Ilya Obshadko ilya.obsha...@gmail.com This is

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread John
that there may be some dependency on prototype or other significant defects. John - Original Message - From: Ilya Obshadko To: Tapestry users Sent: Saturday, November 09, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true This is weird

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread François Facon
, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true This is weird, and I can't find what causes the error. If JQuerySymbolConstants.SUPPRESS_PROTOTYPE is set to true, autocomplete list disappears on hover. If I switch it back to false, everything

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread Ilya Obshadko
- From: Ilya Obshadko To: Tapestry users Sent: Saturday, November 09, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true This is weird, and I can't find what causes the error. If JQuerySymbolConstants.SUPPRESS_PROTOTYPE is set to true

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread Ilya Obshadko
Well, looks like listening to the history events conflicts with jquery/autocomplete mixin somehow. jquery-hashchange plugin has same issue: when hashchange event is handled, autocomplete no longer works. On Sun, Nov 10, 2013 at 12:31 AM, Ilya Obshadko ilya.obsha...@gmail.comwrote: I don't

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread François Facon
that there may be some dependency on prototype or other significant defects. John - Original Message - From: Ilya Obshadko To: Tapestry users Sent: Saturday, November 09, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread Ilya Obshadko
- Original Message - From: Ilya Obshadko To: Tapestry users Sent: Saturday, November 09, 2013 7:38 AM Subject: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true This is weird, and I can't find what causes the error

jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-08 Thread Ilya Obshadko
This is weird, and I can't find what causes the error. If JQuerySymbolConstants.SUPPRESS_PROTOTYPE is set to true, autocomplete list disappears on hover. If I switch it back to false, everything starts working correctly again. Any ideas? -- Ilya Obshadko

Re: how to configure jquery/autocomplete for ssl?

2013-09-18 Thread George Ludwig
MappedConfigurationString, String configuration) { configuration.add(**SymbolConstants.SECURE_**ENABLED, true); 17.09.2013 13:07, George Ludwig пишет: I recently secured my webapp using an ssl certificate. Everything is great, except the jquery/autocomplete mixin generates an ajax

how to configure jquery/autocomplete for ssl?

2013-09-17 Thread George Ludwig
I recently secured my webapp using an ssl certificate. Everything is great, except the jquery/autocomplete mixin generates an ajax url with an http protocal, rather than an https protocol, causing the ajax call to fail. Is there an easy way to configure the protocol used?

Re: how to configure jquery/autocomplete for ssl?

2013-09-17 Thread Michael Gagauz
); 17.09.2013 13:07, George Ludwig пишет: I recently secured my webapp using an ssl certificate. Everything is great, except the jquery/autocomplete mixin generates an ajax url with an http protocal, rather than an https protocol, causing the ajax call to fail. Is there an easy way to configure