>
>        <a 
> onclick="web2py_component('{{=_link}}'),'component')">{{=_name}}</a>
>

Should be:

 <a onclick="web2py_component('{{=_link}}', 'component-pane')">{{=_name}}
</a>

Note, you had an extra ")" after the URL but before the target argument, 
which would have caused a Javascript syntax error. Also, the target should 
be 'component-pane', not 'component'.

Anthony

Reply via email to