Results 1 to 1 of 1
Thread: Help with <html:radio> tag
- 09-29-2008, 11:16 AM #1
Member
- Join Date
- Sep 2008
- Posts
- 4
- Rep Power
- 0
Help with <html:radio> tag
I am displaying a list in a JSP page using the following code..The problem is i have to add 2 radio buttons(View & Edit) at the end of each row for the status field of each resource..The list is from resource table and this status is from roleresourcemapping table....I have tried with <html:radio> tag..but can select only one radio button at a time from the whole rows....Is there any other way to do this????
<logic:iterate id="data" name="resourcelist"
type="com.sp.dct.security.bo.ResourceBO" indexId="index">
<tr><td><html:multibox property="resourcechecked"
value="<%=data.getResourceName()%>"></html:multibox></td>
<td><bean:write name="data" property="resourceId" /> </td>
<td><bean:write name="data" property="resourceName" /></td>
<td><bean:write name="data" property="description" /></td>
<!--<td><html:radio name="data" property="status" value="V"/></td>
<td><html:radio name="data" property="status" value="E"/></td>-->
</tr>
</logic:iterate>
Similar Threads
-
How can I include a html file in html textarea?
By surya_dks in forum New To JavaReplies: 2Last Post: 10-04-2008, 07:20 AM -
How to use Radio Buttons
By Java Tip in forum SWTReplies: 0Last Post: 07-25-2008, 02:26 PM -
How to use SWT Radio Button
By Java Tip in forum SWTReplies: 0Last Post: 07-25-2008, 02:25 PM -
radio buttons and paint
By gtraylo in forum Java AppletsReplies: 1Last Post: 04-19-2008, 12:43 PM -
property for radio buttons
By swapnanair in forum JavaServer Pages (JSP) and JSTLReplies: 2Last Post: 12-03-2007, 08:39 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks