Re: Tapestry5 and pop-up parameters

2011-01-12 Thread Josh Canfield
> And if i use so then Sign.class is some as priavte Sign sign. > WHY ? @InjectPage grabs the page from a request level cache. This means that no matter how many times or in how many components you inject a page you get the same instance for the entire request (within the same thread). When the Pa

Re: Tapestry5 and pop-up parameters

2011-01-12 Thread Argo Vilberg
Thank you this works... Sorry i am stupid in java advance class usage, but what abaout strange behaviour @InjectPage private Sign sign; sign.setReturnPage("Failid"); sign.setSeisund("FAILID"); return linkSource.createPageRenderLink(Sign.class); And if i use so then Sign.class is some as priav

Re: Tapestry5 and pop-up parameters

2011-01-11 Thread Josh Canfield
There isn't much information in your request so I'm not going to write a book guessing every possible thing you might be talking about. If you know the parameters that you want to pass when you are rendering the page that opens the popup then you can use something like: @Inject PageRenderLinkSourc

Tapestry5 and pop-up parameters

2011-01-11 Thread Argo Vilberg
hi, How to add parameters into Tapetstry page java object if i open page with javascript pop-up windows ? Argo