[web2py] Re: Custom fill with SQLFORM not saving. Web2py version 2.8.2

2014-03-14 Thread Massimo Di Pierro
This was never the correct syntax. You are passing a SQLFORM objected to a 
FORM method.

 if FORM.accepts(form,request.vars): 

should be

 if form.process().accepted: 

On Thursday, 13 March 2014 14:00:24 UTC-5, Martin wrote:

 Hi all,


...if FORM.accepts(form,request.vars): ..
 not working for custom form, please may i know if i'am missing something...
 Thanks!

 def page1(): 
form=SQLFORM(db.a_table) 
if FORM.accepts(form,request.
 vars): 
 session.vars=form.vars 
 redirect(URL(r=request,f='confirm')) 
return dict(form=form) 

 .




-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Custom fill with SQLFORM not saving. Web2py version 2.8.2

2014-03-14 Thread Martin
it worked! thank you

Le jeudi 13 mars 2014 21:00:24 UTC+2, Martin a écrit :

 Hi all,


...if FORM.accepts(form,request.vars): ..
 not working for custom form, please may i know if i'am missing something...
 Thanks!

 def page1(): 
form=SQLFORM(db.a_table) 
if FORM.accepts(form,request.
 vars): 
 session.vars=form.vars 
 redirect(URL(r=request,f='confirm')) 
return dict(form=form) 

 .




-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.