Hi, i needed to add id on the hidden field form element, and i found
out that it doesn't render provided attributes

It should be

    def render(self):
        x = '<input type="hidden" name="%s"%s' % (net.websafe
(self.name), self.addatts())
        if self.value: x += ' value="%s"' % net.websafe(self.value)
        x += ' />'
        return x
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to