Matthias Kestenholz wrote:
> * How can I create a new FormField? Where can I specify which
>   FormField to use for a DB field?

Inherit your class from django.forms.FormField and at the very least 
override render() method. Other methods that you might want to override 
depending on your field are do_html2python, get_validation_errors, 
convert_post_data. Their tasks are documented their docstrings in 
django.forms.

To assign a FormField class to a DB field class you implement 
get_manipulator_field_objs method of the DB class. It returns a list of 
FormField classes (list is here because such fields as DateTimeField are 
represented with two form controls).

For an example I can suggest you to look in my own TagsField app where 
I've created a descendant of a ManyToManyField: 
http://softwaremaniacs.org/media/soft/tags/tags.zip , look into fields.py

BTW, this is already some advanced use of Django. Why do you need to 
make your own form fields? May be the problem can be solved easier...

> * I would like to reuse the table view (f.e. the user list) for
>   other Models. Is that possible outside of the Django
>   administration? (I'd also need custom column renderers; I was
>   unable to find a place where I could define how columns are
>   rendered)

I haven't play much with admin interface so may be others could answer.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to