Re: back button when logged out

2011-05-01 Thread ael
Try SSO... http://jumpstart.doublenegative.com.au/jumpstart/examples/state/sharingacrossmultiplepages1 http://jumpstart.doublenegative.com.au/jumpstart/examples/state/sharingacrossmultiplepages1 -- View this message in context: http://tapestry.1045711.n5.nabble.com/back-button-when-logged-out-tp

Re: site renders CSS or javascript instead of HTML

2011-05-01 Thread Alejandro Scandroli
Hi Are you using any security framework? Do you know if this happen always after login? Alejandro. On Sat, Apr 30, 2011 at 11:35 PM, watarimono wrote: > Hi there, > > Every once in a while (but it seems to be increasing) our site shows one of > the CSS or javascript files instead of the actual

Re: Critical Bug of Zone with IE9

2011-05-01 Thread françois facon
Hi According to http://tapestry.1045711.n5.nabble.com/Re-Prototype-IE9-update-td4331824.html I guess that tapx-prototype could help you in 5.2 Regards François 2011/5/1 Moritz Gmelin : > Hi, > > we have had reports that our application causes errors in IE9. I could create > a very simple examp

Critical Bug of Zone with IE9

2011-05-01 Thread Moritz Gmelin
Hi, we have had reports that our application causes errors in IE9. I could create a very simple example of this behaviour. It seems that Zones that are updated with an ActionLink contained in the Zone itself cause a problem with IE9. In our Apache Log files I could see that IE9 does a POST on th

Re: Tapestry and Ajax

2011-05-01 Thread françois facon
Hi, Perhaps you can get some inspiration from this great sample http://jumpstart.doublenegative.com.au/jumpstart/examples/ajaxgracefulcrud Regards François 2011/5/1 Amr Mohamed Mahmoud Hassanien : > Hi all, > > I Have a grid as the following , that displays the Image, caption and remove > butt

Re: select component, how to implement

2011-05-01 Thread ningdh
Hi, Just set the 'value' parameter to your expected value, then Tapestry will do it for you. Thanks DH - Original Message - From: "Andreas Kerpe" To: "Tapestry users" Sent: Monday, May 02, 2011 1:04 AM Subject: select component, how to implement Hi there, > > i'm trying to implemen

select component, how to implement

2011-05-01 Thread Andreas Kerpe
Hi there, i'm trying to implement a selection list, with an option already preselected. I do not find any way to archive such a preselection "

SOLVED Re: back button when logged out

2011-05-01 Thread Andreas Kerpe
Hi, This could look something like that (independent of caching - so you don't need to set headers): Layout.java (or a BasePage.java): Object onActionFromLogout() { loginService.logout(); return Logout.class; } the login-logout itself is running fine. Where do you add this two lines? This s

Tapestry and Ajax

2011-05-01 Thread Amr Mohamed Mahmoud Hassanien
Hi all, I Have a grid as the following , that displays the Image, caption and remove buttons. ${image.caption} Now I want to allow the user to edit the

Re: back button when logged out

2011-05-01 Thread Christian Köberl
i try to implement a logout feature like yahoo, squirrelmail, etc. That means, when you klick "logout", you are redirected to a logout page. When pressing the browsers back button, you are redirected to the login page again. This could look something like that (independent of caching - so you d