2008/8/8 Rick Mangi <[EMAIL PROTECTED]>: > <definition name="my-other-tile"> > <put-list-attribute name="js_files"> > <add-attribute value="/js/myotherjs.js"/> > </put-list-attribute> > </definition>
<add-attribute> is not additive in Tiles 2.0.x, but in Tiles 2.1.0 you
can make it additive this way (notice the "inherit" attribute):
<put-list-attribute name="js_files" inherit="true">
<add-attribute value="/js/myotherjs.js"/>
</put-list-attribute>
HTH
Antonio
