FLEXIcontent / flexicontent-cck

Advanced content management for Joomla
http://www.flexicontent.org
82 stars 53 forks source link

Disable value in select field #1059

Open micker opened 2 years ago

micker commented 2 years ago

i can be interesting to add a group option in select field

<select>
    <optgroup label="CITY 1">
        <option>City 1 branch A</option>
        <option>City 1 branch B</option>
        <option>City 1 branch C</option>
    </optgroup>
</select>

or in this format, if the above is not possible:

<select>
  <option disabled>CITY 1</option>
  <option">City 1 branch A</option>
  <option>City 1 branch A</option>
  <option>City 1 branch A</option>
</select>