Try puting together a form which has the hiden input you are filling.
That way you don't have to tweak stuf too much.
1. to make the form show up in a popup use target parameter
<form .......... target="myWindow">
2. another trick if you ever need to make the popup the size you want and 
other
stuff that only window.open() offers .. use:
<form .......... target="myWindow"
onsubmit="window.open('','myWindow','width=200
height=200')">

I used the trick in php, so I'm not really shure if onsubmit will interfere 
with forms generated by tapestry.



On 7/26/05, seloha . <[EMAIL PROTECTED]> wrote:
> 
> I have a list which it is possible to select a row. The row selection is
> placed into a hidden tag using javascript. When I press a button I want to
> popup a new window with a new tapestry page which uses the hidden tag 
> data.
> 
> This is probably not difficult but I am being really thick.
> 
> I am using Tapestry 4.0. I have modified newwindowlink from Tassel to work
> with 4.0 but it is only possible to use a parameter rendered at page
> creation time.
> 
> Thanks for any help
> 
> Paul
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

Reply via email to