vote up 1 vote down star
2

I'm using something like this in my template

<select multiple="multiple"  name="services" id="services" size="5">
    {% for service in services %}
    	<option value="{{service.id}}">{{service}}</option>
    {% endfor %}
</select>

When I view the POST data in Firebug or the Django debug, I see it only sends one value. Am I doing something wrong or misunderstanding a concept?

flag
What's the value of services that's provided to the template? – S.Lott Mar 6 at 11:45
Do you mean: services = Service.objects.all() return render_to_response('add.html', {'services': services}) ?? (I cannot get these comments to format at all.) – neoice Mar 6 at 11:54
@neoice: Hint: don't add details to your questions in the comments. Edit your question to add facts. The question always formats correctly. AND the question should stand by itself without a thread of comments. – S.Lott Mar 6 at 12:30

2 Answers

vote up 7 vote down check
request.POST.getlist('services')
link|flag
Jackpot! I think I did need to change services to services[], but getlist r0xors for this. I thought I'd scoured the Django docs but apparently, I was wrong. – neoice Mar 6 at 12:18
You don't need the []. That's a convention limited to PHP. – bobince Mar 6 at 15:32
vote up -1 vote down

Try naming your select "services[]" like so:

<select multiple="multiple"  name="services[]" id="services" size="5">
link|flag
Do you know how the Django view would then treat the request.POST['services[]']? I definitely see the POST data going out on the wire, but I don't see the server interpreting it at all. – neoice Mar 6 at 11:51
Actually try getting "services" (without the []) from POST and check to see if it's an array. – Manos Dilaverakis Mar 6 at 11:53
I was doing that earlier. It causes 'MultiValueDictKeyError': Key 'services' not found in <QueryDict:{ /* POST DATA */ }> – neoice Mar 6 at 11:56
I see. I'm not familiar enough with Django to debug that, I can only make a suggestion for the html/http part. Maybe if you were to post the actual python code you use to grab the POST someone might help you further – Manos Dilaverakis Mar 6 at 12:01
It's really primitive. I tend to just do assignments from request.POST['/* some template variable name */'] – neoice Mar 6 at 12:06
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.