<tlibversion>1.2</tlibversion>
<jspversion>1.1</jspversion>
<shortname>html</shortname>
in WebSphere 5.1.1
I am very new to JSTL and the Struts Taglibs. I have an ArrayList contained inside of a value bean (VALUEBEAN) that I am putting into the HTTP session. I need to populate a drop-down box with the contents of the ArrayList (txnList). I am using the folling tags:
<bean
efine id="vbean" name="VALUEBEAN" property="txnList" />
<html:select property="transactionNm" onchange="newTransaction()">
<html
ptions collection="txnList" property="value" labelProperty="value" />
</html:select>
I've been reading Struts in Action and the Apache doc, but It's just not sinking in and I've got to understand where I'm going wrong.
Please, "help a brother out."