[web2py] Re: how to wrap an already existing input element in a new div in web2py

2015-12-18 Thread Val K
if you mean custom view of SQLFORM you can try something like this: def your_controller() ... form=SQLFORM(...) # or SQLFORM.factory ... form.process() ... # creating view - must be after form.process() fcw = form.custom.widget # see web2py book fcl = form.custom.label

[web2py] Re: how to wrap an already existing input element in a new div in web2py

2015-12-17 Thread Anthony
I believe this was already answered for you on Stack Overflow: http://stackoverflow.com/a/34307838/440323 If that's not what you're looking for, then you'll have to provide more detail and show your existing code. Anthony On Thursday, December 17, 2015 at 1:12:00 AM UTC-5, Sujata Aghor wrote: