Writing custom Django form fields and widgets

Posted by hekevintran on Stack Overflow See other posts from Stack Overflow or by hekevintran
Published on 2010-04-02T11:04:37Z Indexed on 2010/04/02 11:43 UTC
Read the original article Hit count: 205

Filed under:
|

Django has very good documentation that describes how to write custom database fields and custom template tags and filters. I cannot find the document that describes how to write custom form fields and widgets. Does this document exist?

The way I've been able to write custom form fields and widgets is by reading the Django source code and imitating what I see there. I know that there are still things about implementing fields and widgets that I do not completely understand because I have not read any high level document that describes their interfaces.

© Stack Overflow or respective owner

Related posts about django

Related posts about django-forms