Re: Auto Complate Text Field Character Problem

2011-08-15 Thread bilgisever
   I thik there is no problem with general encoding because I can use turkish
character for some other place. Such as :
http://apache-wicket.1842946.n4.nabble.com/file/n3744005/Untitled.png 

 So, I have problem with AutoComplateTextField text field companent. It is
not accept turkish characters.

Thanks,

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Auto-Complate-Text-Field-Character-Problem-tp3738977p3744005.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



Re: Auto Complate Text Field Character Problem

2011-08-15 Thread Martin Grigorov
Sorry, for this problem you actually need
org.apache.wicket.settings.IRequestCycleSettings.setResponseRequestEncoding(String)

I remember such problem reporter by a user with Cyrillic characters.

On Mon, Aug 15, 2011 at 9:49 AM, bilgisever mehmetate...@hotmail.com wrote:
   I thik there is no problem with general encoding because I can use turkish
 character for some other place. Such as :
 http://apache-wicket.1842946.n4.nabble.com/file/n3744005/Untitled.png

  So, I have problem with AutoComplateTextField text field companent. It is
 not accept turkish characters.

 Thanks,

 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Auto-Complate-Text-Field-Character-Problem-tp3738977p3744005.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





-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Auto Complate Text Field Character Problem

2011-08-15 Thread bilgisever
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



Re: Auto Complate Text Field Character Problem

2011-08-15 Thread İzlem Gözükeleş
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=2
   URIEncoding=UTF-8
   ^
   redirectPort=8443 /


On Mon, Aug 15, 2011 at 12:55 PM, bilgisever mehmetate...@hotmail.comwrote:

 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




Re: Auto Complate Text Field Character Problem

2011-08-15 Thread bilgisever
   The problem has been solved. Source of the problem is operating system
language and also encoding.
Change operating system(English to Turkish) and encoding work fine.
  Thanks all,

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Auto-Complate-Text-Field-Character-Problem-tp3738977p3744634.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



Re: Auto Complate Text Field Character Problem

2011-08-12 Thread Martin Grigorov
org.apache.wicket.settings.IMarkupSettings.setDefaultMarkupEncoding(String)

use either UTF-8 or one that supports turkish characters

On Fri, Aug 12, 2011 at 2:30 PM, bilgisever mehmetate...@hotmail.com wrote:
   I had tired to about wicket AutoCompleteTextField. I develop a web page in
 turkish.
 AutoCompleteTextField has some problem about some turkish character. Turkish
 aphabet has
 some more character than english latin characterset. For instance;
 'ü','ı','İ','ö','ğ' etc. When I type these character  AutoCompleteTextField
 did not bring the choices(value which is a list). What is your suggestion to
 solve this problem.

 IDE :eclipse galileo,

 Wicket framework Version: 1.4.17,


 Thanks,
 http://apache-wicket.1842946.n4.nabble.com/file/n3738977/complate1.png
 http://apache-wicket.1842946.n4.nabble.com/file/n3738977/complate2.png

 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Auto-Complate-Text-Field-Character-Problem-tp3738977p3738977.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





-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Auto Complate Text Field Character Problem

2011-08-12 Thread Sven Meier

Is your application running on Tomcat?

Check: 
https://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html


Sven

On 08/12/2011 01:30 PM, bilgisever wrote:

I had tired to about wicket AutoCompleteTextField. I develop a web page in
turkish.
AutoCompleteTextField has some problem about some turkish character. Turkish
aphabet has
some more character than english latin characterset. For instance;
'ü','ı','İ','ö','ğ' etc. When I type these character  AutoCompleteTextField
did not bring the choices(value which is a list). What is your suggestion to
solve this problem.

IDE :eclipse galileo,

Wicket framework Version: 1.4.17,


Thanks,
http://apache-wicket.1842946.n4.nabble.com/file/n3738977/complate1.png
http://apache-wicket.1842946.n4.nabble.com/file/n3738977/complate2.png

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Auto-Complate-Text-Field-Character-Problem-tp3738977p3738977.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