Re: Fw: Generating Dynamic PDF using AjaxFallbackButton

2014-02-25 Thread Martin Grigorov
Yes, I already requested that.

Martin Grigorov
Wicket Training and Consulting


On Tue, Feb 25, 2014 at 2:58 PM, Richard W. Adams  wrote:

> Please blacklist this spammer.
>
> - Forwarded by Richard W. Adams/UPC on 02/25/2014 06:58 AM -
>
> From:   Abigail 
> To: users@wicket.apache.org
> Date:   02/24/2014 08:01 PM
> Subject:    Re: Generating Dynamic PDF using AjaxFallbackButton
>
>
>
> HI there
> In modern enterprise's document management system, people often need to
> process and handle large volumes of multi-page PDF document files.
> Therefore, a professional  PDF document page processing
> <http://www.rasteredge.com/how-to/csharp-imaging/pdf-processing/> utility
> will bring much convenience for users to manipulate and manage those PDF
> files, especially when they are processing some PDF document files that
> have
> over 500+ pages.
>
> --
> View this message in context:
>
> http://apache-wicket.1842946.n4.nabble.com/Generating-Dynamic-PDF-using-AjaxFallbackButton-tp4272343p4664660.html
>
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
>
> **
>
> This email and any attachments may contain information that is
> confidential and/or privileged for the sole use of the intended recipient.
>  Any use, review, disclosure, copying, distribution or reliance by others,
> and any forwarding of this email or its contents, without the express
> permission of the sender is strictly prohibited by law.  If you are not the
> intended recipient, please contact the sender immediately, delete the
> e-mail and destroy all copies.
> **
>


Fw: Generating Dynamic PDF using AjaxFallbackButton

2014-02-25 Thread Richard W. Adams
Please blacklist this spammer.

- Forwarded by Richard W. Adams/UPC on 02/25/2014 06:58 AM -

From:   Abigail 
To: users@wicket.apache.org
Date:   02/24/2014 08:01 PM
Subject:Re: Generating Dynamic PDF using AjaxFallbackButton



HI there
In modern enterprise's document management system, people often need to
process and handle large volumes of multi-page PDF document files.
Therefore, a professional  PDF document page processing
<http://www.rasteredge.com/how-to/csharp-imaging/pdf-processing/> utility
will bring much convenience for users to manipulate and manage those PDF
files, especially when they are processing some PDF document files that 
have
over 500+ pages.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generating-Dynamic-PDF-using-AjaxFallbackButton-tp4272343p4664660.html

Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



**

This email and any attachments may contain information that is confidential 
and/or privileged for the sole use of the intended recipient.  Any use, review, 
disclosure, copying, distribution or reliance by others, and any forwarding of 
this email or its contents, without the express permission of the sender is 
strictly prohibited by law.  If you are not the intended recipient, please 
contact the sender immediately, delete the e-mail and destroy all copies.
**


Re: Generating Dynamic PDF using AjaxFallbackButton

2014-02-24 Thread Abigail
HI there
In modern enterprise's document management system, people often need to
process and handle large volumes of multi-page PDF document files.
Therefore, a professional  PDF document page processing
<http://www.rasteredge.com/how-to/csharp-imaging/pdf-processing/>   utility
will bring much convenience for users to manipulate and manage those PDF
files, especially when they are processing some PDF document files that have
over 500+ pages.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generating-Dynamic-PDF-using-AjaxFallbackButton-tp4272343p4664660.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Generating Dynamic PDF using AjaxFallbackButton

2012-01-07 Thread Alinoor
The link helped, thanks!
Alinoor

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generating-Dynamic-PDF-using-AjaxFallbackButton-tp4272343p4272545.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Generating Dynamic PDF using AjaxFallbackButton

2012-01-07 Thread Alinoor
Hi,

Thanks, the link was helpful.

The difference seems to be that, for ajax requests, a
ResourceStreamRequestHandler needs to be used instead of a
ResourceRequestHandler e.g. 

RequestCycle.get().scheduleRequestHandlerAfterCurrent(new
ResourceStreamRequestHandler(new AResourceStream(), "foo.pdf"));


Thanks,
Alinoor

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generating-Dynamic-PDF-using-AjaxFallbackButton-tp4272343p4272422.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Generating Dynamic PDF using AjaxFallbackButton

2012-01-07 Thread Ernesto Reinaldo Barreiro
This link might be useful to you.

https://cwiki.apache.org/WICKET/ajax-update-and-file-download-in-one-blow.html


-- 
Regards - Ernesto Reinaldo Barreiro
jWeekend
Training, Consulting, Development
http://jWeekend.com 


Generating Dynamic PDF using AjaxFallbackButton

2012-01-07 Thread Alinoor
Hi,

I'm trying to generate a PDF dynamically on a AjaxFallbackButton.submit(),
the code works fine with a normal Button. I've noticed that instead of the
browser showing a download/open dialog for the pdf, the wicket ajax debug
windows seems to have picked up the content of the PDF.

I'm not sure if this is a bug, or am I meant to set something to get the
download/open dialog for the pdf?

I've attached a complete code example, the first button uses the
AjaxFallbackButton and the second uses a Button.

Thanks,
Alinoor 
http://apache-wicket.1842946.n4.nabble.com/file/n4272343/ajaxpdf.tgz
ajaxpdf.tgz 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generating-Dynamic-PDF-using-AjaxFallbackButton-tp4272343p4272343.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org