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.