Hi all!

I want to build a menu inside a loop. Something like this:

<div id="navigation"
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
<table>
<tr><td>
 <ul>
  <t:loop source="itens" value="item">
    <li id="${item.menuId}">
        <t:actionlink t:zone="content"
t:id="${item.actionId}">${item.menuDescription}</t:actionlink>
   </li>
  </t:loop>                     
 </ul>
</td></tr>
</table>        
</div>

I want to generate the Actionlink id dinamically. But
t:id="${item.actionId}" does not work. Can anyone give me a way to do this?
-- 
View this message in context: 
http://www.nabble.com/How-to-set-actionlink-id-dynamically-tp22148516p22148516.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