[Wicket-user] AutoCompleteTextField busy indicators

2007-05-24 Thread Marc Stock
I would like to add a busy indicator that functions as the user types keys on the keyboard for my AutoCompleteTextField rather then say at the end when they change focus to a different component. The reason is that a query is performed at each key press. I started off implementing this the

[Wicket-user] AutoCompleteTextField

2007-05-15 Thread Marc Stock
Hello, I'm a wicket newbie so bear with me. I'm trying to use the AutoCompleteTextField and I have three questions: 1) The auto complete feature appears to work well in Firefox but does not work at all in IE 6. Is there something special I need to do to get it working with IE 6? 2) On my

Re: [Wicket-user] AutoCompleteTextField

2007-05-15 Thread Erik van Oosten
Hi Marc, 1: IE 6 should work (I have autocompletion in production where most users have IE6). If it does not work for you, it must be a regression. If you are absolutely sure, you can file an issue. 2: Use the behavior attached to https://issues.apache.org/jira/browse/WICKET-176. 3: I found

Re: [Wicket-user] AutoCompleteTextField bug?

2007-03-26 Thread Igor Vaynberg
hmm, you might be right. i dont think we url encode the input. please add an rfe. -igor On 3/26/07, Michael Day [EMAIL PROTECTED] wrote: Hi, I think I found a bug in AutoCompleteTextField. When I enter anything with a % symbol, I get a null string passed to getChoices (String). I assume

Re: [Wicket-user] AutoCompleteTextField bug?

2007-03-26 Thread David Leangen
Well... that would almost explain the Japanese problem I'm having... but why only one browser on 1 platform? Weird... On Mon, 2007-03-26 at 18:09 -0700, Igor Vaynberg wrote: hmm, you might be right. i dont think we url encode the input. please add an rfe. -igor On 3/26/07, Michael

Re: [Wicket-user] AutoCompleteTextField bug?

2007-03-26 Thread Igor Vaynberg
url encoding was only not done for internet explorer. -igor On 3/26/07, David Leangen [EMAIL PROTECTED] wrote: Well... that would almost explain the Japanese problem I'm having... but why only one browser on 1 platform? Weird... On Mon, 2007-03-26 at 18:09 -0700, Igor Vaynberg wrote:

[Wicket-user] AutoCompleteTextField issue (wicket 1.2.3)

2007-02-21 Thread Paolo Di Tommaso
The AutoCompleteTextField does not invoke the functions registered by Wicket.Ajax.registerPostCallHandler() after the ajax request has been completed. Is someone else experiencing the same problem? Thank you, Paolo - Take

Re: [Wicket-user] AutoCompleteTextField and special characters -solution

2007-02-15 Thread Nino Wael
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Flemming Boller Sent: 14. februar 2007 22:07 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] AutoCompleteTextField and special characters -solution Hi I just wanted to share a little trick with you guys who

Re: [Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-15 Thread Matej Knopp
My guess would be that AjaxCompleteTextField doesn't use POST to send the entered string to server, it uses get instead. Which means that the string is part of URL. -Matej Flemming Boller wrote: Hi I just wanted to share a little trick with you guys who might also be struggling with

Re: [Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-15 Thread Flemming Boller
You are right Matej. Also the in javascript I can see that the url encoding only takes place when NOT using MSIE.. I have no idea why, but I will try and see if I can somehow change the javascript so autocomplete worx wihout changing tomcat server.xml. /Flemming On 2/15/07, Matej Knopp

[Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-14 Thread Flemming Boller
Hi I just wanted to share a little trick with you guys who might also be struggling with this. I have deployed an application on my linux box. Danish characters (æøå) works fine, no problem. Then we add AutoCompleteTextField to make search more nice on one page. And here comes the problem.

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Johan Compagner
is there somehow another ajax component also added to the page when you see the feedback?Can you see if alll the _javascript_ that you see first (when it works) is still there?johan On 8/30/06, samyem [EMAIL PROTECTED] wrote: I have a custom converter associated to my autocomplete text field

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem
No other ajax component is added except the target is passed the feedbackcomponent. I can see all the javascripts necessary, and there is no error either on the javascript side or on the java side. The callback function to get the autocomplete iterator is not called at all by wicket when the

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Igor Vaynberg
a quickstart project that reproduces this would be great.-IgorOn 8/30/06, samyem [EMAIL PROTECTED] wrote:No other ajax component is added except the target is passed thefeedbackcomponent. I can see all the _javascript_s necessary, and there is no error either on the _javascript_ side or on the

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Eelco Hillenius
Could you please file an issue with our bug tracker? Eelco On 8/30/06, samyem [EMAIL PROTECTED] wrote: No other ajax component is added except the target is passed the feedbackcomponent. I can see all the javascripts necessary, and there is no error either on the javascript side or on the

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem
I can see that I get the following error reported in my JS console in firefox: Error: Wicket.Ajax.AutoComplete is not a constructor Source File: http://localhost:8081/mm/app?wicket:interface=:2:: Line: 78 The HTML code codes something like: ... input

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem
Also, I forgot to add that : script type=text/javascript src=/mm/app/resources/wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteBehavior/wicket-autocomplete.js/script is missing in the second page with the error in the feedback panel. So the problem is that the java script for the

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Janne Hietamäki
Ah, this must be same problem as this https://sourceforge.net/ tracker/?func=detailatid=684975aid=1547028group_id=119783 I'll commit the fix in a second. Janne On 30.8.2006, at 21.13, samyem wrote: Also, I forgot to add that : script type=text/javascript src=/mm/app/resources/

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Igor Vaynberg
looks like it stops recognizing the function signature. maybe it is related to the other bug someone reported where _javascript_ headers are contributed again and again after ajax updates - that would cause this.a quickstrat would really help out here :) -IgorOn 8/30/06, samyem [EMAIL PROTECTED]

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Ryan Sonnek
quickstrat??? =)On 8/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote: looks like it stops recognizing the function signature. maybe it is related to the other bug someone reported where _javascript_ headers are contributed again and again after ajax updates - that would cause this. a quickstrat would

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Eelco Hillenius
On 8/30/06, Ryan Sonnek [EMAIL PROTECTED] wrote: quickstrat??? =) Fastest way to Fender heaven. - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem
I tried to manually added the java script, but I still get these two js errors: Error: Wicket is not defined Source File: http://localhost:8081/mm/javascript/wicket-autocomplete.js Line: 7 and Error: Wicket.Ajax.AutoComplete is not a constructor Source File:

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Frank Bille
amenOn 8/30/06, Eelco Hillenius [EMAIL PROTECTED] wrote: On 8/30/06, Ryan Sonnek [EMAIL PROTECTED] wrote: quickstrat???=)Fastest way to Fender heaven.- Using Tomcat but need to do more? Need to support web services,

[Wicket-user] AutoCompleteTextField

2006-08-29 Thread samyem
If there is an error associated to AutoCompleteTextField, the auto complete text field does not do auto complete, which prevents the user from correcting the problem easily. Can it be done such that even if there are errors in the AutoCompleteTextField, it still behaves normally and show the

Re: [Wicket-user] AutoCompleteTextField

2006-08-29 Thread Eelco Hillenius
What kind of errors do you mean? Where/ how did you encounter this? Eelco On 8/29/06, samyem [EMAIL PROTECTED] wrote: If there is an error associated to AutoCompleteTextField, the auto complete text field does not do auto complete, which prevents the user from correcting the problem easily.

Re: [Wicket-user] AutoCompleteTextField

2006-08-29 Thread samyem
I have a custom converter associated to my autocomplete text field that throws a conversion exception if it cannot convert the entered text into the associated object. Once it does this, I can see the error in the feedback panel, but the autocomplete feature stops working. Eelco Hillenius

[Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin
Started using Wicket and found a problem ;-) To reproduce a bug: 1. Make a simple page with a form containing AutoCompleteTextField and IndicatingAjaxSubmitButton. 2. In a page-class create a Form, add IndicatingAjaxSubmitButton and then AutoCompleteTextField. That's all, your

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Janne Hietamäki
Hi, IIRC, this has already been fixed in the svn. Janne On 25.8.2006, at 13.30, Konstantin wrote: Started using Wicket and found a problem ;-) To reproduce a bug: 1. Make a simple page with a form containing AutoCompleteTextField and IndicatingAjaxSubmitButton. 2. In a page-class

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin
Hmm ... I downloaded latest 1.2.1 from Sourceforge. I appreciate if you just test my sample against latest 1.2.1 in SVN. Janne Hietamäki wrote: Hi, IIRC, this has already been fixed in the svn. Janne On 25.8.2006, at 13.30, Konstantin wrote: -- View this message in

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Martijn Dashorst
you did check out from branches/WICKET_1_2, did you? Martijn On 8/25/06, Konstantin [EMAIL PROTECTED] wrote: Hmm ... I downloaded latest 1.2.1 from Sourceforge. I appreciate if you just test my sample against latest 1.2.1 in SVN. Janne Hietamäki wrote: Hi, IIRC, this has already

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Martijn Dashorst
Ah, then either you have to build from svn, or wait until we release 1.2.2, which will be around this weekend. Martijn On 8/25/06, Konstantin [EMAIL PROTECTED] wrote: No. I use packaged distribution (1.2.1) from Sourceforge. I don't realy wanted to check out and build wicket from sources, so

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Igor Vaynberg
the latest in svn, like martijn said, lives in svnroot/branches/WICKET_1_2 -- not what you downloaded.we already hit this usecase and fixed it, like janne said. it would be nice if you could test it yourself, this is a community effort afterall. if you however dont want to test it yourself, then

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin
igor.vaynberg wrote: the latest in svn, like martijn said, lives in svnroot/branches/WICKET_1_2 -- not what you downloaded. we already hit this usecase and fixed it, like janne said. it would be nice if you could test it yourself, this is a community effort afterall. if you however

[Wicket-user] AutoCompleteTextField giving js error

2006-08-25 Thread V. Jenks
I'm taking my first crack at using some of the built-in Ajax stuff in Wicket - pretty cool by the way! I'm using the AutoCompleteTextField to filter some data and it works except that I'm getting a javascript error. It doesn't seem to be inhibiting any of the functionality but it looks bad,

Re: [Wicket-user] AutoCompleteTextField giving js error

2006-08-25 Thread Janne Hietamäki
This is also fixed in the svn. Janne On 25.8.2006, at 19.59, V. Jenks wrote: I'm taking my first crack at using some of the built-in Ajax stuff in Wicket - pretty cool by the way! I'm using the AutoCompleteTextField to filter some data and it works except that I'm getting a

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Eelco Hillenius
Ok. I'm new to java development, so for now I'm not very familiar with building libraries from sources :-). Well ... going to try. Sorry to bother you. Just tried to inform you about bug. You weren't bothering us at all. Thanks for reporting. The only way to make this framework great is to

Re: [Wicket-user] AutoCompleteTextField giving js error

2006-08-25 Thread V. Jenks
Excellent, thank you - I'll be sure to test 1.2.2 as soon as it is released. Janne Hietamäki wrote: This is also fixed in the svn. Janne On 25.8.2006, at 19.59, V. Jenks wrote: I'm taking my first crack at using some of the built-in Ajax stuff in Wicket - pretty cool by

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Igor Vaynberg
um...and there are recent snapshots available at http://maven.sateh.com/wicket/wicket/-IgorOn 8/25/06, Igor Vaynberg [EMAIL PROTECTED] wrote: there isnt that much to do to get it builtinstall an svn clientinstall apache maven 2cd workspacesvn co

Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin
Built all sources. It's still not working. Bug-report: http://sourceforge.net/tracker/index.php?func=detailaid=1547028group_id=119783atid=684975 igor.vaynberg wrote: um...and there are recent snapshots available at http://maven.sateh.com/wicket/wicket/ -Igor On 8/25/06, Igor

[Wicket-user] autocompletetextfield problem

2006-05-01 Thread myu
Hi all I am experiencing problem with the AutoCompleteTextField. Somehow i am not able to select the last item in the list, which means that if i only have one item i cant select that item. Right now i have made a workaround by adding a dummy field, so there is also at least two items in the

Re: [Wicket-user] autocompletetextfield problem

2006-05-01 Thread Igor Vaynberg
if it was a known bug it wouldve been fixed :) please file a bug report.-IgorOn 5/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:Hi allI am experiencing problem with the AutoCompleteTextField. Somehow i am not able to select the last item in the list, which means that if i only have one item i

Re: [Wicket-user] autocompletetextfield problem

2006-05-01 Thread Igor Vaynberg
Thanks,will try to take a look tonight.-IgorOn 5/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:Hi IgorWell maybe it was fixed in cvs :). I am currently running wicket 1.2-rc2.I have submitted a bug report at sf.net.Kind regards/MuratIgor Vaynberg [EMAIL PROTECTED] wrote: if it was a known bug

Re: [Wicket-user] autocompletetextfield problem

2006-05-01 Thread myu
Hi Igor Well maybe it was fixed in cvs :). I am currently running wicket 1.2-rc2. I have submitted a bug report at sf.net. Kind regards /Murat Igor Vaynberg [EMAIL PROTECTED] wrote: if it was a known bug it wouldve been fixed :) please file a bug report. -Igor On 5/1/06, [EMAIL