hi this is my code <?php echo link_to_remote('Click Me', array( 'update' => 'content', 'url' => 'manual/index', 'loading' => visual_effect('fade', 'content'), 'complete' => visual_effect('appear', 'content'), )) ?>
when user click on "Click Me" loading function not work , first content updated , next content appear , next content faded ! if remove loading or complate function link_to_remote good worked ! is a bug ? or my config is not good to use this function ? javascript -> <a onclick="new Ajax.Updater('content', '/irprofile/web/', {asynchronous:true, evalScripts:false, onComplete:function(request, json){new Effect.Appear('content', {});}, onLoading:function(request, json){new Effect.Fade('content', {});}}); return false;" href="#">Click Me</a> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---