I have an implementation of IPropertySelectionModel that works fine,
but I was looking for an easy way to divide them into groups using the
<optgroup> tag like so:

<select>
  <optgroup label="food">
     <option>burger</option>
     <option>hot dog</option>
  </optgroup>
  <optgroup label="drink">
     <option>beer</option>
     <option>soda</option>
  </optgroup>
</select>

What is the easiest way to accomplish this without rewriting too much?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to