Re: How to implement a long lasting operation waiting page

2009-02-09 Thread Ville Virtanen
t;> > executed before it renders anything and i loose control on how to >> > update the page once the operation is complete. >> > >> > Thanks. >> > >> > ----- >> > To unsubscr

Re: How to implement a long lasting operation waiting page

2009-02-09 Thread Hugo Palma
--- > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > > >

Re: How to implement a long lasting operation waiting page

2009-02-03 Thread Ville Virtanen
--- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > > -- View this message in context: http://www.nabble.com/How-to-implement-a-long-lasting-operation-waiting-page-tp21790821p218

Re: How to implement a long lasting operation waiting page

2009-02-02 Thread nillehammer
Hi Hugo, perhaps you do not need ajax at all. The meta tag might come in handy. This tag causes the browser to wait a certain amount of seconds before it requests the url. You could implement "myWaitingPage" to check whether the operation finished. If yes it would redirect to the result page, if

How to implement a long lasting operation waiting page

2009-02-02 Thread Hugo Palma
I have an operation that needs to be executed that could take a couple of minutes and so i'd like to provide a page where at first it displays a waiting message while the operation is getting executed and then if shows the result of that operation, using ajax so that i don't have to go to another p