Hi,
I have an action that sent an array of strings :
private static final String METADATA_ATTRIBUTE_TYPES = "icTypes";
........
request.setAttribute(METADATA_ATTRIBUTE_TYPES, icTypesList);
return mapping.findForward(SUCCESS);
in my jsp file I did :
<label class="formLabel">Transfer Type</label>
<html:select title="Environment" styleId="type"
property="valueTransferType" styleClass="criteria">
<html:option value="ALL">ALL</html:option>
<logic:iterate id="transType" name="icTypes">
<html:option value="${transType}"><%=transType%></html:option>
</logic:iterate>
</html:select>
When I run the project, it's working fine, I can see all the values in the drop
down menu, but the jsp still show an error in this line :
<html:option value="${transType}"><%=transType%></html:option>
It said :
Cannot find symbole
symbole: variable transType
Thanks, your help is appreciated.