Re: show/hide a zone from javascript

2011-07-09 Thread iberck
Thank you Taha, your response are useful for me :D -- View this message in context: http://tapestry.1045711.n5.nabble.com/show-hide-a-zone-from-javascript-tp4569536p4569596.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: show/hide a zone from javascript

2011-07-09 Thread Taha Hafeez
Hi If you want to show/hide at the client side, you can just use the style.display property of an element(Element.show()/Element.hide() in case you are using prototype). In case you want an ajax call to do it at the server side, you will have to create an event link(ComponentResources.createEvent

show/hide a zone from javascript

2011-07-09 Thread iberck
Hi !! Anyone knows how can I show/hide a zone from javascript? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/show-hide-a-zone-from-javascript-tp4569536p4569536.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: A rewriting problem

2011-07-09 Thread dick_hu
Taha Hafeez wrote: > > Typically it is HttpServletRequestFilter or ComponentRequestFilter or > ComponentEventRequestFilter. The decision you have to make is how much > information do you need from tapestry to perform filtering. The lesser you > need, the early you can exit from the request proces

Re: A rewriting problem

2011-07-09 Thread Thiago H. de Paula Figueiredo
Hi! On Fri, 08 Jul 2011 21:58:17 -0300, dick_hu wrote: I want to rewriting my page,code like this: public class AutoLoginLinkTransformer implements I want to the page rewriting to page "Space" and it sucess to the space,but the browser's url is not change, That's expected behavior. URL r

Re: ZoneUpdater uses proxy URL rather than external URL (Apache/Tomcat/mod_proxy)

2011-07-09 Thread Ross Greinke
Taha Hafeez wrote: > > Hi Ross, > > I don't think it has anything to do with ZoneUpdater or Tapestry. The base > url/context is provided by the servlet container. I think the solution > will > be to replace http://127.0.0.1:7070/ by your domain name:port > > regards > Taha > You're right. I

Re: LinkSubmit not rendering class attribute

2011-07-09 Thread Greg Pagendam-Turner
Hi Tony, Yes I am using tapestry-jquery. Switching to 2.1.1-SNAPSHOT has solved my issue. Thank you. Regards, Greg. On 9/07/2011 12:22 PM, Tony Nelson wrote: Are you by chance using tapestry5-jquery? If so, make sure you are using 2.1.1-SNAPSHOT. The behavior you describe exists in 2.1

Re: A rewriting problem

2011-07-09 Thread Taha Hafeez
If I understand correctly you want the URL in browser to change. PageRenderLinkTransformer.decodePageRenderRequest() is used for cases where you want to override the way tapestry decodes a URL. It might be because you want to use a different URL pattern or you have a generic url that you want to ma

Re: ZoneUpdater uses proxy URL rather than external URL (Apache/Tomcat/mod_proxy)

2011-07-09 Thread Taha Hafeez
Hi Ross, I don't think it has anything to do with ZoneUpdater or Tapestry. The base url/context is provided by the servlet container. I think the solution will be to replace http://127.0.0.1:7070/ by your domain name:port regards Taha On Sat, Jul 9, 2011 at 7:00 AM, Ross Greinke wrote: > I'm