Re: [web2py] FORM helper - formstyle='table2cols'

2011-07-07 Thread Anthony
On Thursday, July 7, 2011 3:46:10 PM UTC-4, Jim S wrote: > > Only problem now is that the input field lengths are getting set to 280px > and I can't find how to override them. > I think that's set in the /static/css/base.css file: input[type=text], input[type=password], textarea, select {

Re: [web2py] FORM helper - formstyle='table2cols'

2011-07-07 Thread Jim Steil
Richard Thanks for the tip. I've switched to using SQLFORM with no data updates for my purpose now and it is much closer to what I want. Only problem now is that the input field lengths are getting set to 280px and I can't find how to override them. I'm just trying a bunch of different thin

Re: [web2py] FORM helper - formstyle='table2cols'

2011-07-07 Thread Richard Vézina
try formstyle='divs' Then if still not above you can make it above by css and the appropriate div class of id... Look at you generate html view source file. Ctrl+U in most nav ;-) Richard On Thu, Jul 7, 2011 at 2:09 PM, Jim Steil wrote: > Hi > > Looking for help with form generation. I have

[web2py] FORM helper - formstyle='table2cols'

2011-07-07 Thread Jim Steil
Hi Looking for help with form generation. I have: form = FORM(LABEL('Name', _for='permissionName'), INPUT(_type='text', __name='permissionName', _id='permissionName', _style="width:150px;", _class='listPanelRow'), L