Changes between Initial Version and Version 1 of Ticket #16027, comment 16
- Timestamp:
- May 18, 2013, 10:30:15 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16027, comment 16
initial v1 6 6 The names are app-local and therefore should not be used in a global context without indicating where they come from. 7 7 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 }}}