> That doesn't look like it will work -- the first branch will only execute > if controls is an instance of all three types of widgets, which will never > be true. I think you want: > > if not isinstance(controls, (INPUT, SELECT, TEXTAREA)): > > No it didn't work :-) clicking through some forms made that clear. What did work was: if isinstance(controls, basestring):
I tried: if not isinstance(controls, (INPUT, SELECT, TEXTAREA)): But that adds a empty <p class="form-control-static"></p> to other controls as well. Why does the comment say: # embed _help into _controls >> > > Don't know. I thought that was your own custom function. > No, to have forms styled the bootstrap 3 way I took the def formstyle_bootstrap(form, fields): function from gluon/sqlhtml as a starting point (line 756 - 798) and made some adjustments. The only thing I am left with is styling radios and checkboxes. I tried the custom widget code here: https://github.com/niphlod/w2p_tvseries/blob/master/modules/w2p_tvseries_utils.py#L100 It's exactly what I want but in case of a list:reference the checkboxes do not reflect the list in the database. Kind regards, Annet -- 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/groups/opt_out.