This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
compare more than one value using logic equal in struts
gita bal
Greenhorn
Joined: Feb 22, 2010
Posts: 4
posted
0
I want to compare more than value and display a field using <logic:equal>. Please proveide some examples
<logic:equal name="apcDetailsForm" property="selectedSheetTemplate" value="2"||"3" >
You'd be better off using JSTL's c:if tag; when functionality overlaps with the JSTL you should favor the JSTL. This also gives you a complete EL that will allow you to do more complex calculations.
That said, if the calculation is even remotely complex, I'd consider moving the logic to the Java layer rather than doing in the JSP itself.