I have observed that in simple crud forms it works the enter key, but crud forms with references to other tables, not working. I mean the following types of tables: db.define_table ('a ', Field ('FieldName', 'DateType')) db.define_table ('b', Field ('FieldName', 'DateType')) db.define_table ('c', Field ('a ', db.a), Field ('b ', db.b)) crud.create (db.c) / / In this form the enter key does not work
On 13 abr, 22:25, luifran <lbernalhernan...@yahoo.es> wrote: > With forms created with html helpers works, but crud forms not works, > when you press the enter key nothing happens. > > On Apr 13, 12:25 pm, pbreit <pbreitenb...@gmail.com> wrote: > > > > > > > > > The regular Web2py forms should already work like that. Are they not for > > you? What happens when you press 'enter'?