| Author |
struts 2 example to have a link in one of the Iterated value in the JSP and pass it to an action
|
chandru rajendran
Greenhorn
Joined: Jan 10, 2011
Posts: 5
|
|
hi,
i'm using struts2 and displayed values fetched from the database using <s:iterator>,
<s:iterator status="stat" value="List">
<tr>
<td><s:property value="#stat.index+1"></s:property></td>
<td><s:property value="%{name}"></s:property></td>
<td><s:property value="%{no}"></s:property></td>
<td><s:property value="%{address}"></s:property></td>
<td><s:property value="%{phone}"></s:property></td>
</tr>
</s:iterator>
i want to make the name property value as a link to call the action class with name being passed as a parameter, please give me some example...
Thanks a lot in advance,
Chandru Rajendran...
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8263
|
|
Struts 2 has a url tag and an anchor tag that can be used together to create URL's with parameters like so:
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
chandru rajendran
Greenhorn
Joined: Jan 10, 2011
Posts: 5
|
|
Thanks a lot Joe...
|
 |
 |
|
|
subject: struts 2 example to have a link in one of the Iterated value in the JSP and pass it to an action
|
|
|