[web2py] Re: send raw POST data/ form fields to web2py controller

2011-06-14 Thread Ross Peoples
With jQuery, I think you just have to do something like the following (but check the docs first http://api.jquery.com/jQuery.post/ ): var form_vars = jQuery('#myform').serialize(); jQuery.post(url, form_vars, function() { alert('POST was successful'); });

[web2py] Re: send raw POST data/ form fields to web2py controller

2011-06-13 Thread pbreit
SHould be doable. For Ajax form submission: http://web2py.com/book/default/chapter/10#Ajax-Form-Submission The "Voting & Rating" shows an example of manual DB insertions: http://web2py.com/book/default/chapter/10#Voting-and-Rating