Praveen Krish
Praveen Krish

Reputation: 33

optgroup in dropdown using struts

Can anyone please help in implementing the same functionality of optgroup using struts.

Upvotes: 2

Views: 1372

Answers (1)

user159088
user159088

Reputation:

As far as I know, there is no way of creating select groups using Struts tags.

You will have to resort to using the plain HTML tag <optgroup> tag and create your select options by using either the JSTL <c:forEach> tag or the Struts <logic:iterate> tag.

Such a tag was added in Struts 2 but for Struts 1 there isn't one.

Upvotes: 1

Related Questions