[Wicket-user] problem in displaying the html formatted text with rendering

2007-01-28 Thread Prashant Khanal
hello all, I want to load html formatted text to the table cell with rendering of html markup. Suppose the html formatted text is stored in the database in this format: ul lione/li litwo/li /ul First linebr / second line My problem is i didnt find any way to load this text such that it is loaded

Re: [Wicket-user] problem in displaying the html formatted text with rendering

2007-01-28 Thread Martijn Dashorst
add(new Label(thing, stuffFromDatabase).setEscapeModelStrings(false)); This does pose a possible security risk with cross site scripting/spam if you allow javascript and such in your database. Martijn On 1/28/07, Prashant Khanal [EMAIL PROTECTED] wrote: hello all, I want to load html