Re: Storing and loading escaped special characters.

2011-03-08 Thread Igor Vaynberg
call setescapemodelstrings(false) on the textfields to disable escaping. -igor On Tue, Mar 8, 2011 at 7:48 AM, Henrique Boregio wrote: > Hi, quick question. > Wicket automatically escapes special characters so when I type in: > This is "my" house. > > What gets stored in my database is: This is

Storing and loading escaped special characters.

2011-03-08 Thread Henrique Boregio
Hi, quick question. Wicket automatically escapes special characters so when I type in: This is "my" house. What gets stored in my database is: This is "my" house When I try to display it using a Label, like: new Label("label", DAO.getValue(id)); It does not convert the " to quotes. Is there a w