Hi,

I am not able to get save dialog.

Here is the code:

final AJAXDownload download = new AJAXDownload()
{
@Override
protected IResourceStream getResourceStream()
{
return new StringResourceStream(info.srcString, "text/plain");
}
 @Override
protected String getFileName() {
return info.proposedFileName;
}
 };
add(download);

add(new AjaxLink<Void>("download") {
@Override
public void onClick(AjaxRequestTarget target)
{
// do whatever with the target, e.g. refresh components
//target.addComponent(...);

// finally initiate the download
download.initiate(target);
}
});

Any hint to troubleshoot the problem ? (Clicking on link goes directly to
download)
Version is 1.4.17


Thank you and regards,
Igor




2011/8/22 eugenebalt <eugeneb...@yahoo.com>

> Thanks I fixed it. This example explains how to do it.
>
> https://cwiki.apache.org/WICKET/best-practices-and-gotchas.html
>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/AJAXDownload-Example-Doesn-t-Support-Content-Disposition-Save-As-tp3760342p3760552.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
>
>

Reply via email to