[web2py] Re: How to process form created in view

2014-05-20 Thread Niphlod
start saying what you need to do ;-P usually request.get_vars, request.post_vars or their "merge" request.vars are holding the data of the form, but I can't say for sure without seeing what you did in the view. On Tuesday, May 20, 2014 9:08:32 PM UTC+2, Fabiano Almeida wrote: > > Hi all, > > I c

[web2py] Re: How to process form created in view

2014-05-20 Thread Fabiano Almeida
Hi Niphlod My code: *controller:* def index(): return dict() *view:* {{extend 'layout.html'}} Relatório Mensal Período: Data Inicial: Data Final: Filtragem Todos Individual I don't know how to collect vars from form after submitted. In controller don

[web2py] Re: How to process form created in view

2014-05-21 Thread Niphlod
if you want to code by hand...be sure to know HTML first...where are "action" and "method" attributes for the form ? you'll collect vars from request.post_vars, hopefully. On Tuesday, May 20, 2014 9:48:45 PM UTC+2, Fabiano Almeida wrote: > > Hi Niphlod > > My code: > > *controller:* > def i

Re: [web2py] Re: How to process form created in view

2014-05-21 Thread Fabiano Almeida
I understood. Thanks! Fabiano. 2014-05-21 4:26 GMT-03:00 Niphlod : > if you want to code by hand...be sure to know HTML first...where are > "action" and "method" attributes for the form ? > > you'll collect vars from request.post_vars, hopefully. > > > On Tuesday, May 20, 2014 9:48:45 PM U