I am using inline formsets.

My model:

class Author(models.Model):
    description = models.CharField(max_length=100)

class Book(models.Model):
    author = models.ForeignKey(Author)
    details = models.CharField(max_length=100)

class AuthorForm(ModelForm):
    class Meta:
        widgets = {
            'description': Textarea(attrs={'cols': 40, 'rows': 4}),
        }

In my views.py i make the form from the AuthorForm like so

form = AuthorForm(request.POST)

But I also make an associated formset for the Books

InlineFormSet = inlineformset_factory(Author, Books)

I cannot pass in a BooksForm with widgets, so how do I add a textarea widget to the book details.

Is it even possible? Am i missing something obvious?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Try:

class BookForm(ModelForm):
    class Meta:
        model = Book
        widgets = {
            'details': Textarea(attrs={'cols': 40, 'rows': 4}),
        }


InlineFormSet = inlineformset_factory(Author, Book, form=BookForm)
link|improve this answer
Perfect, why on earth could I not find this anywhere? Thanks – Mark Feb 24 '11 at 15:18
Glad it actually worked! I couldn't easily find any docs either, I just looked at the source. – Yuji Tomita Feb 24 '11 at 15:20
feedback

I dont know if i have understand your question: do you want Book.details rendered as a textarea?

If so, just use a TextField instead a CharField.

class Author(models.Model):
   description = models.TextField()
link|improve this answer
this is correct for a textfield, but im looking for somkething that also does radio buttons, checkboxes etc. Was trying to keep my example simple. Thanks – Mark Feb 24 '11 at 15:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.