I want to create edit , delete link in display tag with struts2. How can i do so ? If anybody knows please help me ....
i am doing this.
<display:column property="id" title="ID" href="details.jsp" paramId="id" />
but the link is not going to details.jsp .It doesn't go anywhere . what can be the possible reason
You can write your stuff within the tag like this:
<display:table id="row" >
<display:column property="id" title="ID" paramId="id" >
<a href="details.jsp?${row.id}">Details</a>
</display:column>
</display:table>