Denes,

Thanks for your thorough explanation.

In my application I got another unsolved problem, probably you know
how to solve it.

In one of my views I have got a table in which one of the <td></td>
element reads like:

<td>{{=A(club.bedrijf.bedrijfsnaam,_href=URL
(r=request,f='clubdetails',args =[club.bedrijf.id]),target="_blank")}}
</ 
td>


Instead of just opening clubdetails in a new window, I would like to
resize the new window and open it without a menubar. I have the
following script to achieve this:

<script type="text/javascript">
 
function detailsview() {
 
    window.open('/', 'mywindow', height=600,
width=400,menubar=false);
}
</script>


I do know how to call this script from an <a></a> element:

<a href="javascript: detailsview();">details</a>

However, I have no idea how to call it from the A helper. I hope you
do.


Best regards,

Annet.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to