Hi,
Thanks for your reply.
One thing: does it behave differently if you change ajax=False in the
> LOAD()?
>
I don't think that's the cause of the problem, I replaced the ajax menu:
<ul class="nav">
<li class="active"><a data-toggle="pill" onclick={{="web2py_component('
%s','component-pane')"
%URL('addressbook','contact.load',args=session.id)}}>Home</a></li>
<li><a data-toggle="pill"
onclick={{="web2py_component('%s','component-pane')"
%URL('calendar','openingHours.load',args=session.id
)}}>Openingtijden</a></li>
<li><a data-toggle="pill"
onclick={{="web2py_component('%s','component-pane')"
%URL('calendar','eventList.load',args=session.id)}}>Event list</a></li>
</ul>
... with a none ajax menu:
<ul class="nav">
<li class="active"><a href="{{=URL('addressbook','
contact',args=row.id)">Home</a></li>
<li><a href="{{=URL('calendar','openingHours',args=row.id
)">Openingtijden</a></li>
<li><a href="{{=URL('calendar','eventList',args=row.id)">Event
list</a></li>
</ul>
And that caused the modal window to no longer work. To me there's no
obvious link between the menu and the details displayed in the modal window.
Kind regards,
Annet.