Re: Wicket AutoComplete example does not work

2012-05-07 Thread Martin Grigorov
Thanks Brian, This is fixed in 1.5.6 and I'll redeploy the examples at wicket-liibrary.com soon. On Fri, May 4, 2012 at 9:13 PM, Brian Mulholland blmulholl...@gmail.com wrote: I just looked at the wicket autocomplete example at http://www.wicket-library.com/wicket-examples/ajax/autocomplete?0

Wicket AutoComplete example does not work

2012-05-04 Thread Brian Mulholland
I just looked at the wicket autocomplete example at http://www.wicket-library.com/wicket-examples/ajax/autocomplete?0 does not work in IE8 or Firefox. Brian Mulholland For every complex problem, there is an answer that is clear, simple and wrong. --H.L. Mencken Politics is the art of looking

Re: wicket AutoComplete

2008-06-27 Thread Michael Sparer
://www.nabble.com/wicket-AutoComplete-tp18147072p18152021.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

wicket AutoComplete

2008-06-26 Thread Umesh Paliwal
HI , I am trying to use the AutoComplete Text field from wicket 1.3.3. This works fine in firefox. But in IE I get an error and the autoCompleteTextField vanishes. Could you please suggest how should I go about it ? Thanks and regards, Umesh Paliwal

RE: help wanted for wicket autocomplete component

2008-04-16 Thread Patel, Sanjay
Thanks. It helped me. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ryan Gravener Sent: Tuesday, April 15, 2008 2:53 PM To: users@wicket.apache.org Subject: Re: help wanted for wicket autocomplete component Set the model object in getTextValue

help wanted for wicket autocomplete component

2008-04-15 Thread Patel, Sanjay
Hi, I am trying to implement a simple auto complete AJAX text box which gives me the names of actors as I type in (by searching and getting the list of actors from database), and set the Model Object (which is Actor selected from the auto complete drop down) for the Panel (in which this

Re: help wanted for wicket autocomplete component

2008-04-15 Thread Ryan Gravener
Set the model object in getTextValue(java.lang.Object object) but in your renderChoice(*) do not call getTextValue!!! make another method called getStringValue() and return the actor name, then in getTextValue set the modelobject and return getStringValue(). I am not positive this will work.

Re: help wanted for wicket autocomplete component

2008-04-15 Thread Ryan Sonnek
have you looked at the wicketstuff-scriptaculous project? there's an autocomplete text field that should be what you need. On Tue, Apr 15, 2008 at 1:53 PM, Ryan Gravener [EMAIL PROTECTED] wrote: Set the model object in getTextValue(java.lang.Object object) but in your renderChoice(*) do not

Re: YUI vs Wicket AutoComplete

2007-10-31 Thread Ryan Sonnek
don't forget about the scriptaculous autocomplete component as well. It allows for ajax/dynamic autocomplete, or using a static list of results. http://wicketstuff.org/confluence/display/STUFFWIKI/Script.aculo.us+AutoCompleteBehavior On 10/30/07, Eelco Hillenius [EMAIL PROTECTED] wrote: I

Re: YUI vs Wicket AutoComplete

2007-10-30 Thread Eelco Hillenius
I want to use an auto complete component on stateless pages and in theory there should not be a problem with this. Currently the wicket implementation uses the AJAX behaviour functionality which ... waiting for the next episode :-) Eelco