I have a situation where a user needs to click on many links on one page and display many static pdfs each in a new tab or popup. The problem is that I need to do some processing on the original page in the Link#onClick before I open up the pdf in a new tab or popup. I do not want the pdfs added to any existing or new pageMaps either. Something like this:

new AjaxLink(...)
{

public void onClick(AjaxRequestTarget target)
{
// do some processing
// add component to target
// open up new window or tab with static pdf }

I have tried different combinations of ExternalLink with setPopupSettings(popupSettings). A modal window that uses an AbstractAjaxTimerBehavior while processing is being done and then allows user to click on an ExternalLink that displays pdf in popup. And other combinations. Each has little quirks or added steps required by the user.

Is there a better way of getting this to work?

Thanks,

Warren

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

Reply via email to