On Jul 2, 4:40 pm, urukay <[EMAIL PROTECTED]> wrote:
> is there a way how to create choices in Models in specific way, that some
> choices are not selectable (they only group and describe choices below)?
>
> e.g.:
>
> CHOICES = (
>      ('0', 'Basic Colors'),
>      ('1', 'Red'),
>      ('2', 'Green'),
>      ('3', 'Blue'),
>      ('4', 'Other Colors'),
>      ('5', 'Brown'),
>         .....
> )
>
> and I want "Basic Colors" and "Other Colors" not selectable when displaying
> CHOICES in model. Is it possible?

If you want to do this in your own template, you could use the
OPTGROUP HTML tag when rendering that formfield:

http://www.w3schools.com/tags/tag_optgroup.asp


--~--~---------~--~----~------------~-------~--~----~
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