Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
2k views

How do I use Django's MultiWidget?

The documentation is a bit lacking with respect to this feature. from django import forms class TwoInputWidget(forms.MultiWidget): """An example widget which concatenates two text inputs with a ...
4
votes
1answer
511 views

Django subclassing multiwidget - reconstructing date on post using custom multiwidget

So my django book is back at university and I'm struggling to work this one out. I've subclassed django.forms.widgets.MultiWidget like so: class DateSelectorWidget(widgets.MultiWidget): def ...
3
votes
1answer
168 views

how to work with modelform and multiwidget

Newbie to all this! i'm working on displaying phone field displayed as (xxx)xxx-xxxx on front end.below is my code. My question is 1. all fields are mandatory, for some reason,phone is not behaving as ...
2
votes
3answers
218 views

Saving a form model with using MultiWidget and a MultiValueField

I'm trying to understand how to create forms by subclassing MultiWidgets and MultiValueFields. I have a simple Address model and associated forms: class Address(models.Model): user = ...
1
vote
1answer
37 views

How to represent two model fields as one form field in Django?

I can't seem to figure out how to handle the following situation properly in Django: I have a date range in a model, which I store as two separate fields, date_start and date_end: start_date = ...
1
vote
1answer
226 views

django multiwidget subclass not calling decompress()

I am trying to implement a MultiValueField for IP Adress/Domain Name entries. It works as expected for entering data. My Problem is that if I want to display the form bound to specific data, the IP ...
0
votes
1answer
64 views

Validate a MultiValueField with a custom MultiValueWidget in Django

I want to have a field and a widget that lets have an "approximated" date, the idea is have one and only one of the following : Exact date A year and maybe a month An initial and an end year Some ...
0
votes
2answers
102 views

MultiValueField in an optional inline

I've set up a MultiValueField that's used in an inline. If I leave the MultiValueField blank, it appears to think that it's stilled filled in. As a result, I keep getting form validation errors ...
0
votes
0answers
224 views

working/testing MultiWidget,MultiValueField forms

model.py class Person(models.Model): fname = models.CharField(max_length=100) lname = models.CharField(max_length=100) dob = models.DateField() forms.py class DependentForm(ModelForm): ...