I can't find any documentation of the hideerror feature, but looking at html.py, I don't see how the above example would work:
INPUT( _type='radio', _name='age', _value='5', _id='age5', hideerror=True,value =self.request.vars['age']) The hideerror flag seems to work if you do this, though: input = INPUT( _type='radio', _name='age', _value='5', _id='age5', value= self.request.vars['age']) input['hideerror'] = True I see nothing that transfers the hideerror argument from the constructor to a property of the input object, where it needs to be during serialization. What's the correct use of hideerror and where is it documented?

