Re: void onActivate(String ,String)

2008-07-24 Thread Josh Canfield
Phew, that's good. I was thinking it might be something harder :) On Thu, Jul 24, 2008 at 1:33 PM, tapestry5 <[EMAIL PROTECTED]> wrote: > > You are right. > > I changed the url in the css links and script links but missed to change in > the links of images. > > Its working now. > > Thanks. > > >

Re: void onActivate(String ,String)

2008-07-24 Thread tapestry5
You are right. I changed the url in the css links and script links but missed to change in the links of images. Its working now. Thanks. joshcanfield wrote: > > show us the urls generated for your page and the urls generated for the > images. > > On Thu, Jul 24, 2008 at 11:51 AM, tapestr

Re: void onActivate(String ,String)

2008-07-24 Thread Padawn
Event bubbling? In 5.0.13 I have a page with two onActivate()'s, both of which will get invoked. .java 1. void onActivate(Object[] projectContext) {..} // pagelink handler with a context of two Long ids 2. void onActivate(Long taskId) { ... } // pagelink handler with standard

RE: void onActivate(String ,String)

2008-07-24 Thread Jonathan Barker
July 24, 2008 14:51 > To: users@tapestry.apache.org > Subject: Re: void onActivate(String ,String) > > > I tried changing path but it still gives me same values > > > joshcanfield wrote: > > > > Look at the html that your page is generating. Your image/js p

Re: void onActivate(String ,String)

2008-07-24 Thread Josh Canfield
show us the urls generated for your page and the urls generated for the images. On Thu, Jul 24, 2008 at 11:51 AM, tapestry5 <[EMAIL PROTECTED]> wrote: > > I tried changing path but it still gives me same values > > > joshcanfield wrote: > > > > Look at the html that your page is generating. Your

Re: void onActivate(String ,String)

2008-07-24 Thread tapestry5
I tried changing path but it still gives me same values joshcanfield wrote: > > Look at the html that your page is generating. Your image/js paths are > probably relative to the page. > > You probably have: > images/myimage.jpg > you want > /images/myimage.jpg > Josh > On Thu, Jul 24, 2008

Re: void onActivate(String ,String)

2008-07-24 Thread Josh Canfield
Look at the html that your page is generating. Your image/js paths are probably relative to the page. You probably have: you want Josh On Thu, Jul 24, 2008 at 9:13 AM, tapestry5 <[EMAIL PROTECTED]> wrote: > > When ever i use onActivate in my tapestry page i see that it is called > multiple time

Re: void onActivate(String ,String)

2008-07-24 Thread Marcus
Hi, Seach on this list for: t5 "redirect after post" Tapestry uses redirect-after-post design. http://www.theserverside.com/tt/articles/article.tss?l=RedirectAfterPost Marcus