Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
7k views

How to get the label of a choice in a Django ChoiceField?

I have a ChoiceField, now how do I get the "label" when I need it? class ContactForm(forms.Form): reason = forms.ChoiceField(choices=[("feature", "A feature"), ...
4
votes
3answers
65 views

How to let the user choose between typing price inclusive VAT or exclusive VAT in TextField?

I am implementing an back-office application where the user type in prices for products. Sometimes it is preferred to type the price inclusive value-added-tax, VAT and sometimes exclusive VAT. How do ...
4
votes
1answer
758 views

Customizing RadioSelect

Hello I have a form with ChoiceField whose widget is set to RadioSelect Now to override default html output one needs to subclass RadioFieldRenderer like this: class ...
2
votes
1answer
167 views

Django forms choicefield automatically generated choices= problem

I have a form (forms.Form) that automatically generates the choices for its own choicefield as such: class UserForm(forms.Form): def generate_choices(): from vn.account.models import ...
2
votes
1answer
1k views

Add an “empty” option to a ChoiceField based on model datas

I'm defining a ChoiceField based on a model's datas. field = forms.ChoiceField(choices=[[r.id, r.name] for r in Model.objects.all()]) However I'd like to prepend my options with an empty one to ...
2
votes
4answers
1k views

I need to add a choice field to sharepoint that has values depending on the current selection

I need to add a choice field to sharepoint that has values depending on the current selection. Example: if the current selection is Open then the options have to be 'open, and In progress **Current ...
1
vote
1answer
89 views

Django Form ChoiceField range(): 'int' object not iterable

from django import forms class SignUpForm(forms.Form): birth_day = forms.ChoiceField(choices=range(1,32)) I'm getting "Caught TypeError while rendering: 'int' object is not iterable". ...
1
vote
1answer
200 views

Django ChoiceField: Fail to access choices in template

after trying for hours I m frustrated with this. I just can't loop over my ChoiceField's choices in the template. It will not even enter the loop. But if I access the form field with pdb it looks ...
1
vote
1answer
122 views

In Django forms.ModelChoiceField HOWTO restrict displayed choices but set one of the restricted values during cleanup

I have a custom field which subclasses ModelMultipleChoiceField. I provide the choices to be displayed via queryset parameter. This queryset excludes certain values. My problem comes when during ...
1
vote
1answer
152 views

Django: Filter for get_foo_display in a Queryset

I've been trying to filter a queryset on a simple model but with no luck so far. Here is my model: class Country(models.Model): COUNTRY_CHOICES = ( ('FR', _(u'France')), ('VE', ...
1
vote
1answer
655 views

Storing multiple checkbox values in database

I want to store multiple column values in table.Lets take a example .. What are your favourite colors? the choices can be red,blue,green, orange. So lets assume, the user selects atleast 2 values. ...
1
vote
2answers
332 views

List display names from django models

I have an object: POP_CULTURE_TYPES = ( ('SG','Song'), ('MV', 'Movie'), ('GM', 'Game'), ('TV', 'TV'), ) class Pop_Culture(models.Model): name = models.CharField(max_length=30, ...
0
votes
2answers
70 views

listeners for ObjectChoice field

I am creating a BlackBerry application which contains two ObjectChoiceFields. I want to add listeners for each of them. I searched for that but did not find any of useful code. It is like a ...
0
votes
2answers
82 views

Trying to filter the contents of a ChoiceField

(My english no is good, sorry) I have a problem creating a form of search by location: I have the form.py currently as follows: from models import City, Zone class SearchForm1(forms.Form): cityf ...
0
votes
1answer
34 views

How can I hide/remove choice options when a certain condition has been met on a SharePoint 2007 List?

I am trying to create a list in SharePoint 2007 that has a choice field where after a certain number of them has been used, it will either hide or remove itself. For instance, after three list items ...
0
votes
2answers
102 views

Django ChoiceField or TypedChoiceField and invalid choice of id

I am writing a simple form in Django which includes a ChoiceField allowing users to choose from a list of categories. For sure I want to pass the category_id to be processed. This is my code: ...
0
votes
2answers
289 views

Django form don't validate : “Select a valid choice. 20 is not one of the available choices”

I have a form composed of 2 ChoiceField and a CharField. The second ChoiceField is populated via ajax when an item of the first one is selected. The template populating it is the following : {% for ...
0
votes
1answer
147 views

Django ModelChoiceField using distinct values from one model attribute

so I'm working on a django application where I have a model Event. Each Event has some attributes, say one of them is "hostname" (which I will use throughout as an example). I need to implement search ...
0
votes
0answers
124 views

BlackBerry color ChoiceField

Well it's pretty simple, I want a simple drop down (ChoiceField) in bb with: [ ] ColorName Where [ ] is the square with the block of color. However, I can't figure out how to modify the pop-up of the ...
0
votes
2answers
745 views

Python - Django - Form choicefield and cleaned_data

I'm having an issue with how cleaned_data seems to work. I want to store the cleaned_data in a session so I can repopulate the form object later. The problem is my choice fields seems to store the ...
0
votes
1answer
1k views

Django choicefield iniital value problem

I have a dynamic choice field: PASSENGER_TYPE_CHOICE = [(p.id, p.cabin.name) for p in flight.passengertype_set.all() if p.availableSeats > 0] self.fields['passenger_type'] = ...
0
votes
1answer
102 views

Custom unicode on already created object

I'm using permissions in my application. And in some case I need to create form only with permission field. I'm using ModelChoiceField and queryset with permission objects. permission = ...
0
votes
2answers
205 views

cleaned_data() doesn't have some of the entered data

I have a simple form for a user to enter in Name (CharField), Age(IntegerField), and Sex(ChoiceField). However the data that is taken from the Sex choice field is not showing up in my cleaned_data(). ...
0
votes
1answer
215 views

Access Specific Choice Widget/Field from ChoiceField

Anyway to access the widget/render a specific choice from a ChoiceField? APPROVAL_CHOICES = ( ('true', 'Approve'), ('false', 'Re-Submit') ) class ProofApprovalForm(forms.Form): approved ...
0
votes
2answers
794 views

Django: provide choices list to a checkbox from a view function

in my Django application I've got a form with a ChoiceField that normally allows to choice between a range of integer values. class FormNumber(forms.Form): list=[] for i in range(1, 11): ...
0
votes
2answers
921 views

choice property in google app engine

platform: django 1.0, google app engine, app-engine-patch , python 2.5.4 i am tring to use the choices attribute as i always have been using in django website STATUS_CHOICES = ( (1, _('Yet To ...