Hi,

Wondering why the Django admin Multiple Select box widget (in Django
0.96, not sure if 1.0 is different), only allows you to pass in single
digit values via the URL. Basically, if I have a multiple select box
on a popup form and Id like to pass in a value to the url like so:

    example.com/admin/my/model/path/1/?stories=25

It will not select <option value="25">...</option> in the select box,
but it will if I pass it a one digit value like so:

    example.com/admin/my/model/path/1/?stories=2

Which will select <option value="2">...</option> as expected.

Im confused as to why I cannot select items above 9 and if this issue
is fixed in Django 1.0? Could someone test it on 1.0 and let me know?
Also, if you know how to get around this for 0.96, I'd love to hear
it. This is a Javascript related issue.

Cheers,
Dana
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to