• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

How convert into struts html select clause

 
Ranch Hand
Posts: 127
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<select id="groupName" name="groupName" class="dropDownBlack_22text" >
<jsp:scriptlet>
java.util.List groups = (java.util.List) session.getAttribute("groups");
java.util.Iterator itr = groups.iterator();
while (itr.hasNext())
{
DemoBean group = (DemoBean) itr.next();
</jsp:scriptlet>
<option id="nameOfSelectedGroup" value="<jsp:expression>group.getName()</jsp:expression>"> <jsp:expression>group.getName()</jsp:expression></option>
<jsp:scriptlet>
}
</jsp:scriptlet>
</select>
 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
html select tag has all attributes you have used in the code above. Please refer to Taglib Doc.

http://struts.apache.org/1.x/struts-taglib/tlddoc/index.html

You will also find an example in this discussion:

https://coderanch.com/t/59022/Struts/decreasing-width-drop-down-box
 
Anything worth doing well is worth doing poorly first. Just look at this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic