Re: [web2py] form without errors and not accepted

2013-11-01 Thread Diogo Munaro
O Man!! I Solved!!! Was an extra field with radiobox... If I send by post SQLFORM don't get an error, but if I send by ajax post it's raising me a ticket. I removed the error and then the 2 post methods work. It should be a web2py bug? A bug on bug report? lol 2013/11/1 Richard Vézina > I

Re: [web2py] form without errors and not accepted

2013-11-01 Thread Richard Vézina
I don't see you models for the differents dbs, so can't say how validation should occure. But, it should use the same requires as are the set on these dbs... Richard On Fri, Nov 1, 2013 at 12:50 PM, Diogo Munaro wrote: > Yes Richard, but it should be accepted or should take errors, right? >

Re: [web2py] form without errors and not accepted

2013-11-01 Thread Diogo Munaro
Yes Richard, but it should be accepted or should take errors, right? 2013/11/1 Richard Vézina > You don't do redirection after accepted and you set default value to some > field, so you maybe just have the same form again and again... Also, with > SQLFORM.factory() you have to manage the data i

Re: [web2py] form without errors and not accepted

2013-11-01 Thread Richard Vézina
You don't do redirection after accepted and you set default value to some field, so you maybe just have the same form again and again... Also, with SQLFORM.factory() you have to manage the data input by yourself... search the book with filter_field... You have to process you form after if form.pr

[web2py] form without errors and not accepted

2013-11-01 Thread Diogo Munaro
Hi again guys, I'm using SQLFORM.factory and the form returned without errors and without been accepted. *Controller*: def product(): db.product_inventory.researcher_id.default = researcher_id() form = SQLFORM.factory(db.item,db.item_image,db.product,db.product_inventory) if form.pro