[web2py] Re: Question about FORM

2020-01-30 Thread Константин Комков
Thank you, for using form.vars I used form.append(INPUT()). -- 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 subs

[web2py] Re: Question about FORM

2020-01-29 Thread Massimo Di Pierro
You should have request.vars.test but not form.vars.test. The parsing of the latter is done by the INPUT() object. Since you use XML('') you do not have an INPUT object. On Wednesday, 22 January 2020 03:17:55 UTC-8, Константин Комков wrote: > > Hello! Can somebody answer why If I use FORM() and

[web2py] Re: Question about FORM

2014-08-03 Thread tiraen
Yes, thank you, it is the second way to get. First, as I understand it is more suitable for the form, which is filled. The only time The blue button is turned. And underlined font, that I did not point суббота, 2 августа 2014 г., 22:43:00 UTC+3 пользователь Massimo Di Pierro написал: > > for

[web2py] Re: Question about FORM

2014-08-02 Thread Massimo Di Pierro
form = FORM() makes a form but you are making a form that contains no input/select/texarea/buttons. form.add_button('Click', URL ('first')) adds a button after the submit button in the previous form, but that form does not have a submit button. If you really want a form, you should put somethin