Re: Display HTML in Label with validation

2011-09-16 Thread Daniel Stoch
Thanks for your suggestion. But I need to validate a fragment of HTML, but it seems that HtmlDocumentValidator validates only whole documents. From my point of view the following texts are valid HTML fragments: - This is sample text - bThis is/b sample pparagraph/p -- Daniel On Thu, Sep 15,

Re: Display HTML in Label with validation

2011-09-16 Thread Martin Grigorov
See whether org.apache.wicket.settings.IMarkupSettings.getMarkupFactory().newMarkupParser(IMarkupResourceStream) will do the job for you. On Fri, Sep 16, 2011 at 1:17 PM, Daniel Stoch daniel.st...@gmail.com wrote: Thanks for your suggestion. But I need to validate a fragment of HTML, but it

Re: Display HTML in Label with validation

2011-09-16 Thread manuelbarzi
sure, but you can try customizing it. inside it you can find interesting things like HtmlDocumentParser, which you can modify to accomplish your needs. it works with a raw html string document, as you may need. . On Fri, Sep 16, 2011 at 12:17 PM, Daniel Stoch daniel.st...@gmail.com wrote:

Re: Display HTML in Label with validation

2011-09-16 Thread Clint Checketts
Add your own html header and footer tags when validating, (htmlbody/body/html) but don't include them when outputting the fragment. On Fri, Sep 16, 2011 at 6:05 AM, manuelbarzi manuelba...@gmail.com wrote: sure, but you can try customizing it. inside it you can find interesting things like

Display HTML in Label with validation

2011-09-15 Thread Daniel Stoch
Hi, How to display dynamic HTML content on page which can be invalid (because this HTML is entered by a user). I can use Label.setEscapeModelStrings(false), but with invalid HTML content the page will not be rendered (because of HTML parsing error). So maybe I can use some of standard Wicket

Re: Display HTML in Label with validation

2011-09-15 Thread manuelbarzi
may HtmlDocumentValidator help you. . On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch daniel.st...@gmail.com wrote: Hi, How to display dynamic HTML content on page which can be invalid (because this HTML is entered by a user). I can use Label.setEscapeModelStrings(false), but with invalid