Re: [web2py] Multiple target by using the Ajax

2012-04-09 Thread Keith Edmunds
On Mon, 9 Apr 2012 12:28:23 +0100, k...@midnighthax.com said: > def echo(): > return "jQuery('#target1').html(%s);jQuery('#target1').html(%s);" \ > % > (repr(request.vars.name.upper()),repr(request.vars.name.lower())) Sorry, the second '#target1' above should be '#target2' -- "You can

Re: [web2py] Multiple target by using the Ajax

2012-04-09 Thread Keith Edmunds
On Sun, 8 Apr 2012 23:32:31 -0700 (PDT), sanjeet.ro...@gmail.com said: > How to call the multiple function or set the multiple target via Ajax In the view: Start of target1 End of target1 Start of target2 End of target2 In the controller: def echo(): return "jQuery('#target1').ht

[web2py] Multiple target by using the Ajax

2012-04-09 Thread Sanjeet Roy
How to call the multiple function or set the multiple target via Ajax