Tagged Questions

A widget is Django’s representation of a HTML input element. The widget handles the rendering of the HTML, and the extraction of data from a GET/POST dictionary that corresponds to the widget. -- https://docs.djangoproject.com/en/dev/ref/forms/widgets/ Django includes a number of built in widgets, ...

learn more… | top users | synonyms

20
votes
5answers
7k views

How do you change the default widget for all Django date fields in a ModelForm?

Given a set of typical models: # Application A from django.db import models class TypicalModelA(models.Model): the_date = models.DateField() # Application B from django.db import models class ...
12
votes
2answers
1k 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 ...
5
votes
2answers
1k views

Django: How do I add arbitrary html attributes to input fields on a form?

I have an input field that is rendered with a template like so: <div class="field"> {{ form.city }} </div> Which is rendered as: <div class="field"> <input id="id_city" ...
4
votes
1answer
472 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 ...
4
votes
4answers
4k views

Django MultiWidget Phone Number Field

I want to create a field for phone number input that has 2 text fields (size 3, 3, and 4 respectively) with the common "(" ")" "-" delimiters. Below is my code for the field and the widget, I'm ...
3
votes
1answer
69 views

How to set defult date in SelectDateWidget in django

I am using SelectDateWidget widget for entering date in the form field. But i want it to show the current date by default. How can i do that? #modely.py bdate = ...
3
votes
1answer
663 views

Django Custom Widget For ManyToMany field

Does anyone know of a widget that displays 2 select boxes. One shows a list of all object in a model and the other shows the objects which have been selected. The user can then select an object from ...
2
votes
3answers
210 views

Preview Of Gallery in Django Admin

I want to display the selected gallery in my admin. I'm not very capable of writing custom fields and couldn't find any well documented guidelines about it. As for my question, I've written basic ...
2
votes
1answer
600 views

Django SelectDateWidget to show month and year only

Is there a different widget or argument that will allow django to only show/take the year and month input instead of year, month and day? Currently using SelectDateWidget.
2
votes
2answers
681 views

Caught DoesNotExist while rendering: Photo matching query does not exist

When I do the following inside an admin file: photo = Photo.objects.get(original_image__exact=file_name) val = photo.admin_thumbnail.url I get this error: Caught DoesNotExist while rendering: ...
2
votes
1answer
324 views

Unable to override SelectMultiple widget in ModelForm (Django)

I have a ManyToManyField that I want to present in a form, as a CheckboxSelectMultiple widget. Why don't any of these methods work? (See Attempt #1, #2 and #3 below.) According to everything I've read ...
2
votes
2answers
3k views

Django MultiValueField - How to pass choices to ChoiceField?

I have a multivaluefield with a charfield and choicefield. I need to pass choices to the choicefield constructor, however when I try to pass it into my custom multivaluefield I get an error __init__() ...
2
votes
2answers
411 views

In Django Admin, I want to change how foreign keys are displayed in a Many-Many Relationship admin widget

I have a ManyToMany relationship: class Book: title = models.CharField(...) isbn = models.CharField(...) def unicode(self): return self.title def ISBN(self): return self.isbn ...
1
vote
0answers
70 views

TypeError - expected string or buffer for date field in django when using SelectDateWidget

I have a date field in my model, and I am using SelectDateWidget() to provide the user date selection option. The name of the field is deadline and here is how I set the widget in the model form ...
1
vote
0answers
75 views

Django and custom fields/widgets

I am using Dojango at the moment and it creates great Dijit fields (just like from django.fields import * but better looking). All is going well but now I want to create the following widget to edit ...
1
vote
1answer
96 views

Multi field and computed value

I need a solution for this problem: I would like to have MultiField widget for a "value" field. This field should allow to input two values (two input widgets), and user should choose which of these ...
1
vote
3answers
189 views

Django - Admin custom field display & behavior

Let's imagine this model: class ScribPart(models.Model): name = models.CharField(max_length=50, unique=True) text = models.TextField() I'd like to attach a specific class to the field text and ...
1
vote
1answer
416 views

Django: Admin: changing the widget of the field in Admin

I have a model with a boolean value like that: class TagCat(models.Model): by_admin = models.BooleanField(default=True) This appears as a checkbox in admin. 1) How could I use this as a ...
1
vote
2answers
705 views

Django Admin: Using a custom widget for one field

I see this similar question but the answer does not help me so: I have a DateTimeField field in my model. I wanted to display it as a checkbox widget in the Django admin site. To do this, I created a ...
1
vote
1answer
392 views

How to change Django NullBooleanField widget application wide?

I would want to display all NullBooleanFields in my application as radio buttons. What's the best way to do it? Following template or something similar would be ideal. Just to allow rich styling and ...
1
vote
2answers
150 views

Django: How to check if there are field errors from within custom widget definition?

I'd like to create widgets that add specific classes to element markup when the associated field has errors. I'm having a hard time finding information on how to check whether a field has errors ...
1
vote
7answers
4k views

Django: Country drop down list?

I have a form for address information. One of the fields is for the address country. Currently this is just a textbox. I would like a drop down list (of ISO 3166 countries) for this. I'm a django ...
1
vote
1answer
541 views

Overwrite clean method in Django Custom Forms

Hi I have wrote a custom widget class AutoCompleteWidget(widgets.TextInput): """ widget to show an autocomplete box which returns a list on nodes available to be tagged """ def render(self, name, ...
1
vote
3answers
670 views

Date format for django's SelectDateWidget

SelectDateWidget is very convenient but it normally seems to return dates in the format "%Y-%m-%d". It doesn't take a format parameter and doesn't have much documentation. Anyone run into this or have ...
0
votes
0answers
28 views

How to show links in FilteredSelectMultiple Widget to inspect objects?

I need to customize the Django FilteredSelectMultiple widget to display a list of links in the left side window instead of a list of labels. I would like to have in the widget of the ...
0
votes
2answers
136 views

django custom field and widget

Im writing a custom field/widget to display multiple input fields for related data, for example my product has 4 search fields, search1, search2, search3, etc.. , instead of having to define each ...
0
votes
1answer
63 views

How assigned TypedChoiceField as form class to model Field with choices?

I had CharField with choices in the model, but I need for this field render as CheckboxSelectMultiple, which returns list to a form class. With TypedChoiceField form class, which automatic assigned to ...
0
votes
0answers
116 views

Empty label in TypedChoiceField

I have modelform which use the model with CharField with specified choices attribute. I need to render this field like CheckboxSelectMultiple. model: class Language(models.Model): cv = ...
0
votes
0answers
60 views

ModelMultipleChoiceField do not validate with widget attribute overrided to Select

From docs: ManyToManyField is represented by django.forms.ModelMultipleChoiceField, which is a MultipleChoiceField whose choices are a model QuerySet. From source: class ...
0
votes
2answers
162 views

Custom Django CheckboxSelectMultiple widget rendered as an empty list

I am trying to create a CheckboxSelectMultiple widget that lists all the content types of my project. I started by using the base widget when defining a MultipleChoiceField field in a ModelForm and it ...
0
votes
1answer
67 views

django: SplitDateTimeWidget ignores date_format

I am trying to use the SplitDateTimeWidget but want it to accept date in day - month - year format. from django.forms.widgets import SplitDateTimeWidget class EventForm(forms.ModelForm): class ...
0
votes
1answer
196 views

Customize Django Admin Change Form Foreignkey to Include View Record

When selecting a foreignkey in the django admin change form I am trying to add an href that can view the record next to the plus that adds the record. What I've tried just to get the href to render ...
0
votes
0answers
77 views

Django multivalued M2M field in frontend form

I have a simple 'Citation' model that is linked m2m from a content model. class Citation(base_models.ModelBase): """ Citations add references/acknowledgements content """ citation = ...
0
votes
0answers
73 views

Django 1.3 forms wizard are returning to previous page when using Chocie field with CheckboxSelectMultiple widget

My problem has been very buzzling, I almost tried everything for the past day and nothing worked out. I have a django form wizard (Posting_Wizard class) inside there I have three 3 steps excluding ...
0
votes
1answer
39 views

How to set MaxDate and MinDate of a SelectDateWidget in Django?

How to set MaxDate and MinDate of a SelectDateWidget in Django? I am using that widget for a birthdate field. #found in: from django.forms.extras.widgets import SelectDateWidget from django import ...
0
votes
1answer
67 views

SelectMultiple and OptionGroup in Django

I'm using option group-style choices for a django form field, like this: MEDIA_CHOICES = ( ('Audio', ( ('vinyl', 'Vinyl'), ('cd', 'CD'), ) ), ('Video', ( ...
0
votes
1answer
85 views

render a CharField as checkbox in Django admin?

Is it possible to render a Django model CharField as a checkbox? I need this checkbox on admin edit page as well as the list_editable list page. E.g. when checked, set this CharField value to 't', ...
0
votes
2answers
20 views

django duplicate widget requirements

If we have multiple files defining widget classes, and if widgets have e.g class W1(forms.DateInput): class Media: css = {'all':('common/css/ui-darkness/jquery-ui-1.8.9.custom.css',),} ...
0
votes
1answer
300 views

Django admin GenericForeignKey widget

I'm creating a Django app where all the models can be related to each other in an order set by the user. I'm setting all this up using GenericForeignKeys. The kicker is that I need to be able to ...
0
votes
1answer
220 views

Is there a 'SelectDateTime' widget for django forms?

Basically the same as the SelectDate Widget but with an hour component as well. Can't seem to find one in the official docs?
0
votes
1answer
65 views

creating a croppable image field - how to store the widget's data?

I am wondering how to best implement a croppable ImageField in Django. Basically i'd like to upload images and crop them. For example using imagAreaSelect The first approach that came to my mind was ...
0
votes
0answers
172 views

Formset with per field widget selection

I am making a front end for custom testing framework. Each test has some associated scripts and each script has some associated parameters and each parameter has a parameter type. I want to be able ...
0
votes
1answer
341 views

Grouping CheckboxSelectMultiple Options in Django

In my Django App I have the following model: class SuperCategory(models.Model): name = models.CharField(max_length=100,) slug = models.SlugField(unique=True,) class Category(models.Model): ...
0
votes
3answers
469 views

django radioselect render to table

I want to render the django form widget radioselect into a table rather than a ul list. With labels in the first row and the radio buttons below in the second row. One cell for each button. e.g. ...
0
votes
1answer
181 views

Django Caught Warning while rendering: Incorrect integer value: … for column 'user_id' at row 1

I am building a section for my site that allows hunters to write hunting reports. in this section they can choose from a 'wish list' (animals they would like to hunt) and 'bag list' (animals they ...
0
votes
1answer
344 views

Django custom (multi)widget input validation

What is the correct method for validating input for a custom multiwidget in each of these cases: if I want to implement a custom Field? if I want to use an existing database field type (say ...
0
votes
1answer
474 views

How can I get the Django SplitDateTimeWidget to recognize AM/PM inputs?

I can't for the life of me figure out how to get the SplitDateTimeWidget (link to ref doc) to recognize AM/PM inputs. I've tried both the template-style input: ...
0
votes
1answer
409 views

Filter many-to-many multiple select field

I have a object (Book) with a many-to-many relation with another object (Category). 'Category' is used to render subcategories too. The diference between a category and a subcategory is that a ...
0
votes
1answer
203 views

Django admin widget for custom-sorted relationship

I need some help at designing a model and widget for a custom-sorted M2M relationship. The typical application scenario would be books and authors. In particular, when the order of authors in a book ...
0
votes
1answer
480 views

django modelform css class for select

I am trying to add in a class with the name of autocomplete into one of my select. class MyForm(ModelForm): class Meta: model = MyModel exclude = ['user'] def __init__(self, ...

1 2