Hi Vincent.

Here's something I posted to the list ages ago.
There are usually plenty of examples if you search the list archive.

In your .page spec, use an ExternalLink and provide a PopupLinkRenderer.

    <component id="recordDetailLink" type="ExternalLink">
        <binding name="page" expression="'RecordDetail'"/>
        <binding name="parameters" expression="{patientId, record.id}"/>
        <binding name="renderer" expression="beans.recordDetailLinkRenderer"/>
    </component>
    <bean class="org.apache.tapestry.contrib.link.PopupLinkRenderer" 
name="recordDetailLinkRenderer">
        <set-property name="windowName" expression="'recordDetail'"/>
        <set-property name="features" expression="'top=100,left=100'"/>
    </bean>

Cheers,
Nick.


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]

Reply via email to