1
vote
1answer
30 views
Django multi-select widget?
The Django admin site makes use of a really cool widget:
How can I make use of this widget in my own applications? I don't see anything like that listed here.
0
votes
2answers
33 views
How to pass initial parameter to django’s ModelForm instance?
The particular case I have is like this:
I have a Transaction model, with fields: from, to (both are ForeignKeys to auth.User model) and amount. In my form, I'd like to present th …
0
votes
2answers
17 views
how to set an event handler in a django form input field
How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible?
Any clue would be appreciated.
0
votes
2answers
61 views
Django Formsets - form.is_valid() is False preventing formset validation
I'm am utilizing a formset to enable users subscribe to multiple feeds. I require a) Users chose a subscription by selecting a boolean field, and are also required to tag the subsc …
1
vote
1answer
36 views
Can Django admin handle a one-to-many relationship via related_name?
The Django admin happily supports many-to-one and many-to-many relationships through an HTML <SELECT> form field, allowing selection of one or many options respectively. Ther …
0
votes
1answer
13 views
Django Forms not rendering ModelChoiceField’s query set
I have the following ModelForm:
class AttendanceForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
operation_id = kwargs['operation_id']
del kwargs['o …
0
votes
1answer
20 views
How to create a resizeable TinyMCE textarea?
I have a Django form using textareas and TinyMCE for text entry.
I would like to add a slider to change the vertical size of the textarea, like SO has them so nicely.
How can thi …
0
votes
2answers
34 views
Country/State/City dropdown menus inside the Django admin inline
I have a city foreign key in by BusinessBranch model. My City model also has a state and country foreign keys for State and County models. I'm having hard time displaying State and …
0
votes
3answers
35 views
unique_together validation fails if one of the fields is excluded from form
I have a model Menu:
class Menu(models.Model):
loja = models.ForeignKey(Loja, related_name='menus')
nome = models.CharField(max_length=30)
ordenacao = models.IntegerFi …
0
votes
2answers
38 views
Reusing Admin forms for user views in django?
Django is making very nice forms after creating a models.py and an admin.py.
How can I reuse these forms (with the extra nice handling of foreign keys and many-to-many fields) in …
1
vote
1answer
38 views
Django form not saving default image name
I've got a form which includes the option to upload an image. In my model, I've defined a default image name to use when no image is selected for upload. When selecting a file, t …
1
vote
2answers
71 views
What is wrong with my django’s model field ?
I am trying to do a PhoneField that convert the value as a standardized value.
In this case, I want to use this clean method.
def clean(self):
phone = self.cleaned_data.get(' …
0
votes
0answers
13 views
Extending forms.SelectMultiple Without Losing Values
I have a model form that I am writing a custom widget for in order to replace the many-to-many forms.SelectMultiple fields with jQuery FCBKcomplete widgets. While the replacement o …
2
votes
1answer
37 views
How to access a forms instance in a modelformset django
In my view I create a formset of photos belonging to a specific article, this works brilliantly, and I am able to render and process the forms. However for the image field I would …
0
votes
2answers
64 views
Django forms: making a disabled field persist between validations
At some point I need to display a "disabled" (greyed out by disabled="disabled" attribute) input of type "select". As specified in the standard (xhtml and html4), inputs of type "s …
