Razvan Popa a écrit :

> sfLightbox Plugin seems not to work when being called from a 
> link_to_remote loaded div.
> Can't figure out what the problem is.
> Any ideea?

I don't know this plugin and what it does exactly, but 'script' => 
'true' must be specified in the option parameter of your 
link_to_remote() call in order to allow ajax loaded javascript code 
execution :

<?php echo link_to_remote('my link', array(
   'update' => 'change_zone',
   'url'    => '/module/ajax_action',
   'script' => 'true',
)); ?>

Hope it helps.

--
Nicolas

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to