Solved
The isue was that images where build up on the client side and where asigned
the baseURI+imagedirectory, as the baseURI now contains many more items the
result points far away where the images are .
to solve it I just write
String
s=img.baseURI.substring(0,img.baseURI.indexOf("app")+4)+"/images/"+plusImage;
img.src=s;
So the trick is to remove the part of the URI that gets out of the scope.
--
View this message in context:
http://www.nabble.com/T5-OnActivate-tp17583640p17597422.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]