The A() helper can take a cid or target attribute to target a DIV to load content. Using the response.menu tuples, how can this be achieved?
response.menu = [
(T('Home'), False, URL('default', 'index'), []),
(T('Library'), False, None, [
(T('Services'), False, URL('default', 'library.load', args=['service'], user_signature=True))
])
]
edit:
My ultimate goal is to load the page in library.load into a target div.
I cheated with jQuery at index.html. I hope there is a way to inject the attribute at server level.