Perhaps it is beneficial if you tell us which version of Wicket you are using?

Judging from your remark, I assume it is 1.2.x. This means that you
need to strip org.apache from the import.

Use wicket.util.file.File instead.

Martijn

On 5/24/07, kenixwong <[EMAIL PROTECTED]> wrote:
>
> Sorry, i stil cant get it... more detail ??
>
> public void onSubmit() {
>         File file = exportRequestDetailsAsPdf(sqlField, sqlCondition, 
> sqlOrderBy);
>         System.out.println(file);  -> return me NULL
>
>         ResourceStreamRequestTarget target = new 
> ResourceStreamRequestTarget(new
>                      FileResourceStream(new
> org.apache.wicket.util.file.File(file)));
>         target.setFileName("Filename.pdf");
>         RequestCycle.get().setRequestTarget(target);
> }
>
> org.apache.wicket.util.file --> i cant get what it mean (org.apache.wicket
> cannot be resolved to a type)
>
>
> Thanks a lot...
>
>
>
>
> Harald Gruber wrote:
> >
> >
> > try this...
> >
> > public void onSubmit() {
> >       File file = generatePdfReport();
> >       ResourceStreamRequestTarget target = new
> > ResourceStreamRequestTarget(new
> > FileResourceStream(new org.apache.wicket.util.file.File(file)));
> >       target.setFileName("Filename.pdf");
> >       RequestCycle.get().setRequestTarget(target);
> > }
> >
> >
> > harald
> >
> >
> > kenixwong schrieb:
> >> Once i click the "Generate Report" Button, the onSubmit function of
> >> button will called and generate a report in pdf format. Once the report
> >> is generated, i need it immediately display in the browser (either
> >> current page or pop up page). Anyone can help ? note: The Report is
> >> implemented with iText.
> >> ------------------------------------------------------------------------
> >> View this message in context: wicket - Load the pdf file after onSubmit
> >> <http://www.nabble.com/wicket---Load-the-pdf-file-after-onSubmit-tf3808639.html#a10779302>
> >> Sent from the Wicket - User mailing list archive
> >> <http://www.nabble.com/Wicket---User-f13976.html> at Nabble.com.
> >>
> >>
> >> ------------------------------------------------------------------------
> >>
> >> -------------------------------------------------------------------------
> >> This SF.net email is sponsored by DB2 Express
> >> Download DB2 Express C - the FREE version of DB2 express and take
> >> control of your XML. No limits. Just data. Click to get it now.
> >> http://sourceforge.net/powerbar/db2/
> >>
> >>
> >> ------------------------------------------------------------------------
> >>
> >> _______________________________________________
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> > -------------------------------------------------------------------------
> > This SF.net email is sponsored by DB2 Express
> > Download DB2 Express C - the FREE version of DB2 express and take
> > control of your XML. No limits. Just data. Click to get it now.
> > http://sourceforge.net/powerbar/db2/
> > _______________________________________________
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/wicket---Load-the-pdf-file-after-onSubmit-tf3808639.html#a10782080
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-- 
Join the wicket community at irc.freenode.net: ##wicket
Wicket 1.2.6 contains a very important fix. Download Wicket now!
http://wicketframework.org

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to