You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to add option group to select field. I want to display posts and pages in the select field. If i dont put optgroup then the user cannot distinguish between which is post and which is pages. Is it possible to add optgroup tag ??
Issue description:
I want to add option group to select field. I want to display posts and pages in the select field. If i dont put optgroup then the user cannot distinguish between which is post and which is pages. Is it possible to add optgroup tag ??
eg output.
<select>
<optgroup label="Posts">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
</optgroup>
<optgroup label="Pages">
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</optgroup>
</select>
The text was updated successfully, but these errors were encountered: