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 mecha

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 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 HTML content the > p

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 - This is sample paragraph -- Daniel On Thu, Sep 15, 2011 at 5

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 wrote: > Thanks for your suggestion. But I need to validate a fragment of HTML, > but it seems that HtmlDocument

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 wrote: > > Thanks for your suggestio

Re: Display HTML in Label with validation

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