[web2py] Re: creating a new form RENDERER.

2010-12-30 Thread mdipierro
No it is injected in the form. Here is the relevant code form tools.py addrow(form, self.messages.verify_password + ':', INPUT(_name="password_two", _type="password", requires=IS_EXPR('value==%s' % \ repr(request.vars.get(passfie

Re: [web2py] Re: creating a new form RENDERER.

2010-12-30 Thread David J.
Thanks, I will look into. Also how is the "verify password" field generated on the "Registration Form" seems like that is a "virtual field" As I mentioned yesterday that field is missing its css class selector so the form does not view correctly once you modify the css. You can check there.

[web2py] Re: creating a new form RENDERER.

2010-12-30 Thread mdipierro
these are the list lines in the SQLFORM constructor: elif type(formstyle) == type(lambda:None): table = TABLE() for id,a,b,c in xfields: td_b = self.field_parent[id] = TD(b,_class='w2p_fw') newrows = formstyle(id,a,td_b,c)