@anthony, tested your code but the result is not expected, it's added another a href *usually use in response.menu :* (T('Address'), False, URL('master', 'address'), [] ), *result:* <a class="dropdown-item" href="/test/master/address">Address</a>
*change into :* (A('Address', _href='/test/master/address', _class='dropdown-item'), False, *None*), *result:* *<a class="dropdown-item" href="None"></a>*<a class="dropdown-item" href="/test/master/address">Address</a> *change into :* (A('Address', _href='/test/master/address', _class='dropdown-item'), False, *''*), *result :* *<a class="dropdown-item" href></a>*<a class="dropdown-item" href="/test/master/address">Address</a> objective why i use a href in menu, because i want to use anchor accesskey for keyboard shortcut menu and anchor title for description any idea? thx and best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.