Re: [web2py] Re: Form + combined

2014-04-22 Thread Richard Vézina
You need conditionnal select, it wasn't clear from you explanation... Look about lazy_option_plugin : https://github.com/scubism/sqlabs/blob/master/modules/plugin_lazy_options_widget.py It serves this purpose. Richard On Sat, Apr 19, 2014 at 5:46 AM, Lucas Schreiber < lucas.schreiber.pri...@g

[web2py] Re: Form + combined

2014-04-19 Thread Lucas Schreiber
Uhm, while working, i noticed your code does not really have all features i tried to implent, i'm sorry. Am Donnerstag, 17. April 2014 15:35:11 UTC+2 schrieb Lucas Schreiber: > hey, > i have a Problem and i don't know how to solve it. I want a form with an > Input "text" field ( let's call it

[web2py] Re: Form + combined

2014-04-18 Thread Lucas Schreiber
Thanks :) Am Donnerstag, 17. April 2014 15:35:11 UTC+2 schrieb Lucas Schreiber: > > hey, > i have a Problem and i don't know how to solve it. I want a form with an > Input "text" field ( let's call it "amount') and an part > (let's call it 'area'). And, finally, a "submit" button. All this sha

Re: [web2py] Re: Form + combined

2014-04-18 Thread Richard Vézina
Hmm... Simple : # Models db.define_table('area', Field('area_value', 'string', notnull=True, required=True, requires=IS_NOT_EMPTY(), ),

[web2py] Re: Form + combined

2014-04-18 Thread Lucas Schreiber
*push* still no idea Am Donnerstag, 17. April 2014 15:35:11 UTC+2 schrieb Lucas Schreiber: > hey, > i have a Problem and i don't know how to solve it. I want a form with an > Input "text" field ( let's call it "amount') and an part > (let's call it 'area'). And, finally, a "submit" button. Al