That last email was all tapestry5-jquery.  It was a copy of the jqueryui.com 
demo as an example.
All you have to do is substitute where <h3> begins with your loop.

HTH :D

On 25/04/2012, at 1:43 AM, arterzatij wrote:

> Hi, I actually did in this way an it works, but I want to use the jquery
> accordion provided on Tapestry-Jquery...
> 
> <div id="accordion">
>       <t:loop t:source="nodes" t:value="node">
>               
> 
>                        # ${node.name} 
>               
> 
>               <div>
>                       <ul>
>                               <t:loop t:source="node.children" 
> t:value="nodeChild">
>                                       <li>
>                                               ${nodeChild.content}
>                                       </li>
>                               </t:loop>
>                       </ul>
>               </div>
>       </t:loop>
> </div>
> 
> 
> js:
> 
> $(function() {
>       $("#accordion").accordion({
>               fillSpace: true
>       });
> });
> 
> --
> View this message in context: 
> http://tapestry.1045711.n5.nabble.com/Tapestry-jQuery-tp5662365p5662445.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
> 


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

Reply via email to