As mentioned in the Book, in the template have code:
<?= link_to
(
'Link text',
'/module/action',
array
(
'popup' => array
(
'Popup title',
'width=310, height=400, left=320, top=0',
)
)
);
?>
Resulting html code (with my manual formatting):
<a onclick="
var w=window.open(
this.href,
'Popup title',
width=310,
height=400,
left=320,
top=0');
w.focus();
return false;"
href="/module/action"
>
Link text
</a>
And so i have trouble: in the Opera and Firefox popup works fine...
But in the IE6 it opens in the same window. Symfony version 1.0.9
Please explain, what i do wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" 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/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---