should work but will check asap On Sunday, 3 March 2019 19:59:49 UTC-8, [email protected] wrote: > > Thanks, Massimo. Will this work for multiple tables? When I write: > > formargs={'Wordlist': dict(separator=': '), 'Wordlist2word': dict( > separator=': ')} > > this works for the first table, but when I navigate into the second table > via a linked field, the arguments don't seem to be picked up. I ask > because I'd like to set other, table-specific options if possible. > > > On Sunday, March 3, 2019 at 2:25:43 PM UTC-8, Massimo Di Pierro wrote: >> >> It is not a bug. >> >> The problem is that in smartgrid you have to specify which table the >> formargs apply to. For example: >> form = SQLFORM.smartgrid(dvdb.Wordlist, args=request.args[:1], paginate= >> 100, formargs={'Wordlist': dict(separator=': ')}, breadcrumbs_class= >> 'breadcrumbs') >> >> I am making a change that will allow: >> >> >> form = SQLFORM.smartgrid(dvdb.Wordlist, args=request.args[:1], paginate= >> 100, formargs={'*': dict(separator=': ')}, breadcrumbs_class= >> 'breadcrumbs') >> >> so the formargs apply to all tables. Will be in 2.18.3 >> >> >> On Friday, 1 March 2019 23:40:08 UTC-8, [email protected] wrote: >>> >>> dvdb = setupdb(gethostconfig(servername), getappconfig("devicecontrol")) >>> dvdb.Wordlist.longdescription.widget = SQLFORM.widgets.text.widget >>> form = SQLFORM.smartgrid(dvdb.Wordlist, args=request.args[:1], paginate= >>> 100, formargs=dict(separator=': '), breadcrumbs_class='breadcrumbs') >>> >>> Works, but separator is nowhere in sight. This, on the other hand, >>> >>> dvdb = setupdb(gethostconfig(servername), getappconfig("devicecontrol")) >>> form = SQLFORM.grid(dvdb[tablename], args=request.args[:2], paginate=100 >>> , formargs=dict(separator=': ')) >>> >>> also works, and shows the separator. We are on: >>> >>> 2.16.1-stable+timestamp.2017.11.14.05.54.25 >>> (Running on nginx/1.10.3, Python 2.7.12) >>> >>> John >>> >>
-- 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 subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

