[symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-06 Thread Belgacem TLILI
i have include ?php use_helper('JavascriptBase') ? if i use ?php use_helper('Javascript')? i will get an error (i thinks for sf 1.4 we must use JavascriptBase On 6 avr, 00:24, Robert Heim sa...@gmx.net wrote: Oh I'm sorry.. I did not know that remote_function(..) is a built-in support for ajax

Re: [symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-06 Thread DEEPAK BHATIA
Hi, I think remote_function are obsoleted in the Symfony 1.4. I think this can be achieved using JQuery. Regards Deepak On Tue, Apr 6, 2010 at 3:14 PM, Belgacem TLILI belgacem0...@gmail.comwrote: i have include ?php use_helper('JavascriptBase') ? if i use ?php use_helper('Javascript')? i

Re: [symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-06 Thread Robert Heim
yeah I was confused, because there are some blog and forum-posts on the internet, that use 1.4 and remote_function.. To solve the problem, you might use this jQuery plugin? http://www.symfony-project.org/plugins/sfJqueryReloadedPlugin Am 06.04.2010 12:20, schrieb DEEPAK BHATIA: Hi, I think

[symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-05 Thread Belgacem TLILI
great it's work the problem was resolved thank you Mr Robert Heim just one more thing in Firebug i have an error that i think is not important - invalid assignment left-hand side 'update' = 'myzone',\n --- ?? On 5 avr, 23:34, Robert Heim sa...@gmx.net wrote: try:

[symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-05 Thread Belgacem TLILI
i'm using jquery to get the ajax action this my code in the template script $(#MyButton).click(function() { remote_function(array(update=item_list,url=cap/new)); }); /script i have not any result ? -- If you want to report a vulnerability issue on symfony, please send it to security at

Re: [symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-05 Thread Robert Heim
I heard something like that Javascript doesn’t have built in support for associative arrays the way PHP and other programming languages do.. try var Arr=new Array(); Arr[0] = new Array(); Arr[0][first_name] = foo; Arr[0][last_name] = bar; Mitarbeiter[0][Wohnort]= Dresden; I'm not sure..