I am trying to use both Struts tags and JSTL in a page.

I have the following:

<nested:iterate property="lineItems">
<!--
FS: <c:out value="${fulfillmentStatus}"/>
SO: <c:out value="${sampleOrigin}"/>
-->
<c:if test="${fulfillmentStatus == 'In Process' && sampleOrigin ==
'special_order'}">
... THIS IS NEVER DISPLAYED SINCE JSTL TAGS CAN'T FIND VARS ...
</c:if>
</nested:iterate>

Now, my JSTL tags can't find these variables in any scope. How should I
properly address the data?

Thanks,
Hunter


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to