Hi,
I also had problem about Turkish characters (ç, ş,İ,ğ) and solved problem:

* Add these lines to the Application class's init method:
 getRequestCycleSettings().setResponseRequestEncoding("UTF-8");
 getMarkupSettings().setDefaultMarkupEncoding("UTF-8");

* After this, I re-configured tomcat's server.xml file and modified
connector for UTF-8 encoding:
<Connector port="80" protocol="org.apache.coyote.http11.Http11AprProtocol"
               connectionTimeout="20000"
               URIEncoding="UTF-8"
               ^^^^^^^^^^^^^^^^^^^^^^^^^
               redirectPort="8443" />


On Mon, Aug 15, 2011 at 12:55 PM, bilgisever <mehmetate...@hotmail.com>wrote:

> getMarkupSettings().setDefaultMarkupEncoding("ISO-8859-3");
> getRequestCycleSettings().setResponseRequestEncoding("ISO-8859-3");
>
> I try it in Application init, encoding is changed but the problem is still
> ongoing.
>
> Thanks,
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Auto-Complate-Text-Field-Character-Problem-tp3738977p3744253.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

Reply via email to