Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-12 Thread harmoniaa
https://issues.apache.org/jira/browse/WICKET-5232 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-i-display-a-WepPage-in-a-PDF-How-to-get-the-rendered-markup-tp4659290p4659438.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-12 Thread Martin Grigorov
Hi, This can be relaxed. Please file a ticket. On Wed, Jun 12, 2013 at 2:55 PM, harmoniaa < edvard.fons...@nitorcreations.com> wrote: > I created a quickstart but didn't create a ticket yet, because I found out > that ComponentRenderer expects to get a component whose markupId equals to > Compo

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-12 Thread harmoniaa
I created a quickstart but didn't create a ticket yet, because I found out that ComponentRenderer expects to get a component whose markupId equals to ComponentRenderer.COMP_ID. Is this a bug or a feature? Is there some way to render the markup of an existing component that has an arbitrary markupI

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-10 Thread Martin Grigorov
On Mon, Jun 10, 2013 at 4:30 PM, harmoniaa < edvard.fons...@nitorcreations.com> wrote: > Good point. Anyway, that still leaves me the issue with ListView... > Please create a ticket with a quickstart for this. > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.c

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-10 Thread harmoniaa
Good point. Anyway, that still leaves me the issue with ListView... -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-i-display-a-WepPage-in-a-PDF-How-to-get-the-rendered-markup-tp4659290p4659354.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-10 Thread Martin Grigorov
Hi Edvard, Thank you for the feedback. ComponentRenderer (CR) just asks Wicket to render a component. The rendering process uses all the application settings so if the wicket tags/attributes cause any problems then the application can turn them off before using CR and turn on after. So I think CR

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-10 Thread harmoniaa
FYI: I had a problem using ComponentRenderer with ListView (it was complaining the there was no markup for wicket-id "my-wicket-id"). Additionally, ITextRenderer (or xerces actually) was not able to parse XML from the markup with Wicket tags ("The prefix "wicket" for element "wicket:container" is

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-10 Thread Martin Grigorov
Hi, Since Wicket 6.7.0 there is ComponentRenderer class which does exactly the same. On Sat, Jun 8, 2013 at 12:01 AM, Per Newgro wrote: > Found the solution already. I did it that way: > > public class FlyingSaucerPdfResource extends ByteArrayResource { > > public FlyingSaucerPdfResource()

Re: Can i display a WepPage in a PDF (How to get the rendered markup)?

2013-06-07 Thread Per Newgro
Found the solution already. I did it that way: public class FlyingSaucerPdfResource extends ByteArrayResource { public FlyingSaucerPdfResource() { super("application/pdf"); } @Override protected byte[] getData(Attributes attributes) { ByteArrayOutputStream os;