[web2py] TOMORROW: Talk to py4web's creator! Live Chat with Massimo DiPierro discussing py4web live 7/25/2020 10am PST

2020-07-24 Thread Tom Campbell
The hardest working man in the web framework business will be here for you to answer questions via interactive text. There will be a copy of the transcript available on FreeNode, plus I'll attempt to put together a polished version in article form. So the inevitable mistakes in my transcript wi

Re: [web2py] Re: login expiration time

2020-07-24 Thread Warwick JC
Thanks. Is it wrong to have iframe pages from the same app? Regards On Fri, 24 Jul 2020 at 15:20, villas wrote: > If you are using an iframe to display a page from the same app, I have > the impression that your design might be wrong. You will probably find a > better way after you give this a

[web2py] Re: import_from_csv_file and auth.signature

2020-07-24 Thread David Orme
Well now that is embarrassing. Thanks! For reference, this was my recipe to put at the top of a file that is going to populate multiple tables: if db(db.auth_user).count() == 0: #Bulk load account admin_user_id = db.auth_user.insert(first_name='Bulk uploader') else: admin_user_id = d

[web2py] Re: login expiration time

2020-07-24 Thread villas
If you are using an iframe to display a page from the same app, I have the impression that your design might be wrong. You will probably find a better way after you give this a little more thought. Sorry if this answer does not seem so helpful. -- Resources: - http://web2py.com - http://web2p

[web2py] Re: Radio Buttons basic inline editing in SQLFORM.grid

2020-07-24 Thread villas
Are you sure you cannot use ajax? I think that would be much easier. -- 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 yo

[web2py] Re: import_from_csv_file and auth.signature

2020-07-24 Thread villas
Did you try... db.locations.created_by.default = 1 # or whateverdb.locations.modified_by.update = 1 prior to: import_from_csv_file -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issu

[web2py] import_from_csv_file and auth.signature

2020-07-24 Thread David Orme
Hello, I've got a table like this: db._common_fields.append(auth.signature) db.define_table('locations', Field('title', 'string'), Field('capacity', 'integer'), Field('celcat_code', 'string'), Field('is_external', 'boolean', default

[web2py] Re: Radio Buttons basic inline editing in SQLFORM.grid

2020-07-24 Thread 'Matthew J Watts' via web2py-users
Hi jacob, i am trying to do the same thing, did you find a solution for this? On Saturday, April 27, 2019 at 4:20:10 AM UTC+2 Jacob wrote: > Thank you for the response it appears that they do have the same name . > I'm sorry I'm still new to programming in general, I've read around about > how