I have a
struts select defined containing 4 hard coded entries. I want to be able to add a fifth entry that will contain different values without defining a collection. How could this be accomplished?
<html:select property="selectedBillToCustomerId"
styleClass="selectskinny" onchange="selectBillTo();" >
<html:option value="">--Select--</html:option>
<html:option value="Input Circuit">Input Circuit</html:option>
<html:option value="Output Circuit">Output Circuit</html:option>
<html:option value="Do Not Bill">Do Not Bill</html:option>
</html:select>