Tagged Questions
The formset tag has no wiki summary.
7
votes
4answers
6k views
Django Forms - How to access data when form.is_valid() is false
When I have a valid Django form, I can access the data with form.cleaned_data. But how do I get at the data a user entered when the form is not valid i.e., form.is_valid is false.
I'm trying to ...
6
votes
1answer
2k views
Django: Initializing a FormSet of custom forms with instances
Given the following models:
class Graph(models.Model):
owner = models.ForeignKey(User)
def __unicode__(self):
return u'%d' % self.id
class Point(models.Model):
graph = ...
5
votes
2answers
2k views
Django Formset.is_valid() failing for extra forms
In my Django application application I have a formset that is created from a simple (not-model) form, with the extra=1 (to allow javasript to add more forms later on).
class SomeForm(forms.Form):
...
4
votes
2answers
377 views
Django formsets required
How to make all forms in django formset required? I tried to validate presence of all fields in cleaned_data overriding formset's clean() method but it just fails silently without any error displayed.
...
3
votes
2answers
666 views
Django: ManagementForm data is missing … Formset will not validate. Why?
For some reason my formset will not validate, after I submit it. Any ideas as to way this may be happening?
#models.py
class Department(models.Model):
department = models.CharField(verbose_name = ...
3
votes
4answers
2k views
Django formset unit test
I can't running Unit Test with formset.
I try to do a test:
class NewClientTestCase(TestCase):
def setUp(self):
self.c = Client()
def ...
3
votes
2answers
424 views
Django: disallow can_delete on GenericStackedInline
I've built this model which contains a generic foreign key:
class MyModel(models.Model):
content_type = models.ForeignKey(ContentType, verbose_name=_('content type'))
object_id = ...
3
votes
2answers
2k views
Django how to save a custom formset
I've written the following custom formset, but for the life of me I don't know how to save the form. I've searched the Django docs and done extensive searches, but no one solution works. Lots of ...
3
votes
2answers
779 views
Django Formset without instance
In this Django Doc explain how to create a formset that allows you to edit books belonging to a particular author.
What I want to do is: Create a formset that allows you to ADD new book belonging to ...
3
votes
3answers
2k views
Creating a model and related models with Inline formsets
[I have posted this at the Django users | Google Groups also.]
Using the example at http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-formsets, I am able to edit objects belonging ...
2
votes
3answers
417 views
Django formset doesn't validate
I am trying to save a formset but it seems to be bypassing is_valid() even though there are required fields.
To test this I have a simple form:
class AlbumForm(forms.Form):
name = ...
2
votes
1answer
956 views
Is this a bug in Django formset validation?
Manual example: http://docs.djangoproject.com/en/1.0/topics/forms/formsets/#formset-validation (I'm using Django 1.0.3 to run on Google App Engine)
Code:
from django import forms
from ...
2
votes
2answers
1k views
Changing field type in a Django ModelFormset
In a Django ModelForm, you can change the widget type of a field like so:
class EntryForm(ModelForm):
entity = forms.CharField()
class Meta:
model = Entry
I can easily create a ...
2
votes
4answers
2k views
How to show hidden autofield in django formset
A Django autofield when displayed using a formset is hidden by default. What would be the best way to show it?
At the moment, the model is declared as,
class MyModel:
locid = ...
1
vote
1answer
168 views
Django - Passing parameters to inline formset
I am using inlineformset_factory to create fields for a many to many relationship between Clients and Sessions, with an intermediary Attendance model.
I have the following in my views file:
...
1
vote
1answer
223 views
Django: How to save a formset based on two models
I am having difficult times saving a formset to the database. I have 2 models, one having a ForeignKey to the other(I made some entries for Balanta model in Django admin page):
models.py
class ...
1
vote
1answer
396 views
Django: Using Radio select box on model formsets
Hey,
I'm using a model formset to let my users edit their photo album. I want to put a Radio select box on every photo saying "Set as cover image" so that I can process all the photos and find the one ...
1
vote
1answer
477 views
Django: Add field to model formset
I can I add fields to a model formset? It seems you can add fields if you user normal formset but not with model formsets (at least it's not the same way). I don't think I should use inline formset ...
1
vote
2answers
533 views
Passing Custom Form parameter to formset
I have the following Form defined
class MyForm(ModelForm):
def __init__(self, readOnly=False, *args, **kwargs):
super(MyForm,self).__init__(*args,**kwrds)
if readOnly:
...
1
vote
2answers
809 views
In Django, how do you construct a formset manaully in a template?
I am constructing the pieces of a formset manually in a template. How do I get the hidden fields TOTAL_FORMS and INITIAL_FORMS. Is there a hidden display widget with them in it already there that I ...
1
vote
2answers
958 views
How to add custom fields to InlineFormsets?
I'm trying to add custom fields to an InlineFormset using the following code, but the fields won't show up in the Django Admin. Is the InlineFormset too locked down to allow this? My print "ding" ...
0
votes
0answers
15 views
Displayin values of ForeignKeys in django formsets
I have a translation formset :
def render_translator(request,src_lang,trans_lang,template='translate_page.html'):
translated_words = Translation.objects.all()
TranslationSet = ...
0
votes
2answers
54 views
how to access form's data in a django formset
I have problem on accessing the form data from a formset. I attached the code:
####FORM
class ActionTypeForm(forms.Form):
action_name = models.CharField(max_length=20)
description = ...
0
votes
1answer
35 views
how to access the member forms of a formset?
I have an inline_formset for which I am using a custom form. That form has various functions that I would like to call. But, given an instance of the formset, how can I access that (those?) form(s)?
...
0
votes
0answers
50 views
Django: Passing custom paramter to formset (BaseModeFormSet) clean method
I want to pass a custom parameter to my clean method in MyModelFormSet(BaseModelFormSet) class.
I create my formset using modelformset_factory (formset = MyModelFormSet,...) and I want to pass this ...
0
votes
0answers
75 views
specifying form= in Django modelformset_factory call for incoming form causes all fields to be required
I have this view function(edit_all_contacts). I need to return the incoming form in the response if there are any errors, so the client can fix his/her errors. Only 3 fields out of 8 are required in ...
0
votes
0answers
53 views
Django ManyToManyField holds items with a foreign key. How do I create a Form?
I have many kinds of items that the user may order. Some can be sold several at a time, some only singly. Each has its own description. To make this happen, I have a "catalog" table (ChargeKind) that ...
0
votes
0answers
46 views
Counting blank forms in Django ModelFormset
I have a ModelFormSet. Also I have JavaScript to dynamically add new forms. Now it is possible to add few new blank forms to formset (JavaScript). And then it is possible to save them. But...
I want ...
0
votes
0answers
76 views
How to bound data to a Dynamic Formset Django
I have been working on a dynamic formset.
I already created a page with a dynamic formset. Now i need to know, how to bound data, which is saved in those formset for an edit view.
How do I do that?
...
0
votes
1answer
94 views
Filter Objects in a Django Formset
I am using inlineformset_factory to generate a formset as so:
FormSet = inlineformset_factory(Model1, Model2, extra=0)
if request.method =="POST":
formset = FormSet(request.POST, ...
0
votes
0answers
138 views
Django formsets slow on many to many relationships
I've a many to many to many relationship between 3 models namely- User, Project, Role. A user can be in multiple projects playing multiple roles even in same project. This relationship is modeled with ...
0
votes
1answer
64 views
Django Formset Iteration go wrong
I am trying to get the cleaned_data for each form in a formset, using a normal iteration (just like what shown in Django documentation):
MyFormSet = formset_factory(form=MyForm, ...
0
votes
1answer
64 views
Is there a feature for data bound formset?
I have created an editable formset with mutltiple fields of the same type.
The data can be edited and submitted.
Is there a way to bind this formset to the data so that updates happen ...
0
votes
0answers
237 views
Using a modelformset_factory with instances / How to update existing objects
My Problem
I am using a Formset and I need to check for unique_together in the Model. But when I save an object, it complains about an unique_together error, when the object already exists in the ...
0
votes
1answer
308 views
Custom Label in Django Formset
How do I add custom labels to my formset?
<form method="post" action="">
{{ formset.management_form }}
{% for form in formset %}
{% for field in form %}
{{ ...
0
votes
2answers
332 views
ManagementForm data missing error while formset validation
Hi
formset creation in views.py:
ffact = formset_factory(Form,extra=somenum]))
fset = ffact(prefix='pfix')
validation in views.py:
ffact = formset_factory(Form,extra=3))
fset = ...
0
votes
1answer
239 views
Django admin: Inline of a Many2Many model with 2 foreign keys
after wracking my brain for days, I just hope someone can point me to the right approach.
I have 4 Models: Page, Element, Style and Post.
Here is my simplyfied models.py/admin.py excerpt: ...
0
votes
1answer
174 views
Django: Access each form and FileField in formset
How can I iterate thorugh a formset to get each form and FileField for in that form?
for file in formset.files:
....
for form in formset.forms:
....
I'd like the above in the same loop since I ...
0
votes
1answer
399 views
Django and empty formset are valid
I have a little problem with the formset.
I must display several formsets in a page, and each formset has several forms.
So i did something like that :
#GET
for prod in products:
ProductFormSet ...
0
votes
1answer
329 views
Override FileField widget in InlineFormset_factory?
I would like to change the default upload field (FileField) in an inlineformset_factory form, to use the AdminFileWidget from django.contrib.admin.widgets. The purpose of this is to show the path of ...
0
votes
1answer
649 views
Can you Make a Django form set validate the initial data?
Here's an example:
from django import forms
class ArticleForm(forms.Form):
title = forms.CharField()
pub_date = forms.DateField()
from django.forms.formsets import formset_factory
...
0
votes
3answers
991 views
Creating modelformset from a modelform
I have a model MyModel which contains a PK - locid, that is an AutoField.
I want to construct a model formset from this, with some caveats:
The queryset for the formset should be a custom one (say, ...
0
votes
2answers
390 views
Model Formset Issue
I have a model for which the need is to show the form multiple times. I have used it under a modelformset. I seem to have a problem with the id of this model which is also the primary key for the ...
0
votes
1answer
250 views
Setting values to the output of a formset in Django
This question is somewhat linked to a question I asked previously:
http://stackoverflow.com/questions/477183/generating-and-submitting-a-dynamic-number-of-objects-in-a-form-with-django
I'm ...
-1
votes
1answer
34 views
django formset issue
I have 2 models
class A(models.Model):
id=models.AutoField(primary_key=True)
name=models.CharField(max_length=200)
class B(models.Model):
id=models.AutoField(primary_key=True)
...
-1
votes
2answers
48 views
Relationship between form and formset on same webpage
I'm trying to relate all the objects created in a formset to an object created on the same webpage as the formset. So, an example of the code is this:
def create_b(request):
SpeciesFormSet = ...