Hi

I made this JavaScript function to load a partial.


function renderPartial(partial, div, params){
    $('.loader').show();
    $(div).load(
        partial,
        params, //params = { var1 : 2, var2 : 1 }
        function() {$('.loader').hide();}
    );
}


When i call it everything works, but in my action, the params i get
are coming:

sfParameterHolder Object ( [parameters:protected] => Array
( [{var1_:_2,_var2_:_1}] => [module] => myModule [action] => show
[sf_format] => html [id] => 2 ) )

I can't access to the params i passed by Ajax, they come protected(?)

Any idea what is wrong?

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to