Changes between Initial Version and Version 1 of Ticket #16027, comment 16


Ignore:
Timestamp:
May 18, 2013, 10:30:15 AM (11 years ago)
Author:
Jakub Roztočil

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16027, comment 16

    initial v1  
    66The names are app-local and therefore should not be used in a global context without indicating where they come from.
    77
     8'''Update:''' A nice solution would also be to use `optgroups`:
     9
     10
     11{{{
     12<select>
     13  <optgroup label="App One">
     14    <option value="1">Model One</option>
     15    <option value="2">Model Two</option>
     16  </optgroup>
     17  <optgroup label="App Two">
     18    <option value="3">Model One</option>
     19    <option value="3">Model Two</option>
     20  </optgroup>
     21</select>
     22}}}
Back to Top