Thiago H. de Paula Figueiredo wrote:
> 
> Em Wed, 30 Sep 2009 13:24:40 -0300, shymon <shym...@poczta.onet.pl>  
> escreveu:
> 
>> Hi,
> 
> Hi!
> 
>> Moreover, during the second pass my activation context variable has
>> unexpected value. eg.:
> 
> Make sure you use ${asset:...} or absolute paths to reference any files  
> inside your templates.
> 
> 

My template is as follows:

<html t:type="layout" title="SomeTitle"
      xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";
      xmlns:p="tapestry:parameter">
  <div class="panel">
    <div class="rel-panel">
      <applet code="nrs/MainApplet.class"
archive="${asset:context:applet/SomeApplet.jar}" width="100%" height="600"
id="rel-graph"/>
    </div>
  </div>
  <br/>
</html>

and activation context methods:

 void onActivate(String eid) {
    setEid(eid);
  }

  List onPassivate() {
    List params = new Vector();
    params.add(getEid());
    return params;
  }


-- 
View this message in context: 
http://www.nabble.com/Strange-java-applet-behavior-with-T5-tp25684505p25688483.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to