Re: Component to String

2013-01-25 Thread Martin Grigorov
There is Mail template example at http://www.wicket-library.com/wicket-examples-6.0.x/mailtemplate/?0 since some time. On Thu, Jan 24, 2013 at 6:25 PM, Steve Lowery wrote: > I found several threads on the user list about converting a Component into > a String. There are at least 2 very valid us

Re: Component to String

2013-01-24 Thread Paul Bors
You can also use a VelocityPanel in Wicket to render to HTML or plain text or XML or whatever your velocity template feels like :) http://wicket.apache.org/learn/projects/velocity.html ~ Thank you, Paul Bors On Thu, Jan 24, 2013 at 1:30 PM, Cedric Gatay wrote: > Yes it is the real issue wh

Re: Component to String

2013-01-24 Thread Cedric Gatay
Yes it is the real issue when displaying HTML in emails. However, using Wicket's builtin templating engine is great to generate these HTML mails ;) On Thu, Jan 24, 2013 at 7:24 PM, Nick Pratt wrote: > The real issue here is that most Email clients render HTML really badly, or > dont render it a

Re: Component to String

2013-01-24 Thread Nick Pratt
The real issue here is that most Email clients render HTML really badly, or dont render it at all (or their implementations of such rendering is just wrong). Even modern email clients, like the latest Outlook or GMail dont render significant portions of HTML/CSS correctly, and you will likely have

Re: Component to String

2013-01-24 Thread Francois Meillet
Hi Cedric, Great ! It works on 6.5 François Le 24 janv. 2013 à 17:39, Cedric Gatay a écrit : > Hi, > I recently needed to do this, I come with a simple solution (quickly > deprecated by our main application architecture however). I blogged about > it here > http://www.bloggure.info/work/java-

Re: Component to String

2013-01-24 Thread Cedric Gatay
Hi, I recently needed to do this, I come with a simple solution (quickly deprecated by our main application architecture however). I blogged about it here http://www.bloggure.info/work/java-work/use-wicket-templating-system-to-generate-html.html I hope it will help you, I don't know if it works we

Component to String

2013-01-24 Thread Steve Lowery
I found several threads on the user list about converting a Component into a String. There are at least 2 very valid use cases where doing this makes sense: 1. You are trying to create an html email to send out to your customers. Building that content out with wicket is a great way to do it. W