Results 1 to 2 of 2
Thread: jstl tag <if>
- 04-01-2009, 07:23 PM #1
Member
- Join Date
- Apr 2009
- Posts
- 1
- Rep Power
- 0
jstl tag <if>
Hi,
I have a question on jstl <if> tag. I know that you use this in jsp to display something if a certain condition is true. I have a situation where I need to display an additional radio button if a certain condition is true. For some reason, this code is not working. To make it clear, I have posted the current codesnippet. I am displaying A,B,C radio buttons and in addition the "D" radio button if a certain condition is true only. My question is, is this right or should I use a choose <when> condition and display A,B,C radio buttons if a certain condition and display A,B,C and D if another condition. I appreciate you help. Thank you in advance. :
<tr>
<td class="CONTENT"><html-el:radio styleid="credit" property="creditCardKind" value="${Constants.CREDIT}" onclick="toggleCC(this.value)" />
<b><label for="credit">A</label></b></td>
<td class="CONTENT"><html-el:radio styleid="debit" property="creditCardKind" value="${Constants.DEBIT}" onclick="toggleCC(this.value)" />
<b><label for="debit">B</label></b></td>
<td class="CONTENT"><html-el:radio styleid="cash" property="creditCardKind" value="${Constants.CASH}" onclick="toggleCC(this.value)" />
<b><label for="cash">C</label></b></td>
<c:if test="${orderForm.isPIA}">
<td class="CONTENT"><html-el:radio styleid="paymentHold" property="creditCardKind" value="${Constants.CASH}" onclick="toggleCC(this.value)" />
<b><label for="cash">D</label></b> </td> </c:if> </tr>
- 04-02-2009, 09:07 PM #2
Similar Threads
-
JSTL problem
By mihir66 in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 03-05-2009, 02:28 PM -
JSTL: Help in displaying a particular element
By nn12 in forum Advanced JavaReplies: 2Last Post: 12-08-2008, 07:57 AM -
jstl in jsp
By nagaprasanna in forum JavaServer Pages (JSP) and JSTLReplies: 0Last Post: 11-18-2008, 08:18 AM -
JSTL Exception Handling
By chaatf in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 07-18-2007, 02:24 AM -
JSTL error
By Eric in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 06-11-2007, 09:36 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks