1
vote
2answers
87 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 …
2
votes
1answer
67 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.
…
1
vote
2answers
56 views
Passing Custom Form parameter to formset
Hi,
I have the following Form defined
class MyForm(ModelForm):
def __init__(self, readOnly=False, *args, **kwargs):
super(MyForm,self).__init__(*args,**kwrds)
if readOnly:
…
0
votes
2answers
232 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 …
2
votes
1answer
75 views
Django: disallow can_delete on GenericStackedInline
Hello,
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 = …
0
votes
2answers
202 views
Django Formset without instance
Hi. 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 …
0
votes
1answer
137 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 …
0
votes
2answers
159 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
4answers
499 views
How to show hidden autofield in django formset
Hi everyone,
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
2answers
232 views
Creating a model and related models with Inline formsets
Hi,
[I have posted this at the Django users Google group also.]
Using the example at http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-...
, I am able to edit objects belonging a …
3
votes
3answers
693 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 …
0
votes
1answer
204 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
2answers
182 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 …
1
vote
2answers
447 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):
…
0
votes
3answers
309 views
Creating modelformset from a modelform
Hi everyone,
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 …
