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, junderh...@launchpnt.com 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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to