We use it and generate "stuff" on the fly.
<bean name="popup"
class="com.pingidentity.renderer.ContractDetailsPopupRenderer"/>
<!-- adapterContractPopUp -->
<component id="adapterContractDetailsPopup" type="ExternalLink">
<static-binding name="page" value="ContractDetailsPopUp"/>
<binding name="renderer" expression="beans.popup"/>
</component>
We have a page and a renderer:
import org.apache.tapestry.contrib.link.PopupLinkRenderer;
public class ContractDetailsPopupRenderer
extends PopupLinkRenderer
{
public ContractDetailsPopupRenderer()
{
super(null, "top=100,left=100,height=200,width=300,scrollbars");
}
}
That is pretty much it.
HTH,
Mark
-----Original Message-----
From: Lindsay Steele [mailto:[EMAIL PROTECTED]
Sent: Thu 12/15/2005 3:55 PM
To: Tapestry users
Subject: Re: Tapestry 3.0.3 contrib:PopupLink
I am not totally sure about what you are asking, but I am guessing you
are running into the fact that the popup link seems
to only work with static html pages.
Personally I use the NewWindowLink component that you can find in the
Tassel repository. It will work in the same way as a direct link
and allow you to show dynamic content in the popuped window. Works well
in a number of apps for me.
You can find it at Tassel - http://equalitylearning.org/Tassel/app
Vincent wrote:
>Hi all,
>
>I am using popup link to popup the window , but in the poped window ,
>the page will not be rendered, and thus I cannot implement anything on
>popped up window.
>
>Did I need manual to render the page? Any suggestions?
>
>regards,
>Vincent
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]