Hi,
I have a Struts2 application and I'm using the display:table tag.
My problem is that I want to change the param's name for paging (in my case
"d-457775-p") for another... How can I do it?
I have seen the parameters (<display:property..) but... nothing.
And another thing more... how to do for pass this param (paging) to another
action (Col1)? I have tried to put href="" in display:column (Col2), but it
not works. See my code and sorry for my English.
<display:table name="vacantesList"
id="vacantesList"
pagesize="15"
requestURI="one.action" >
<display:column
href="addPlantillaVacante.action" paramId="num_vac" paramProperty="num_vac"
title="Col1">
<img
src="<%=request.getContextPath()%>/img/note_add.png">
</display:column>
<display:column href=""
property="num_vac" title="Col2" />
<display:column
property="cod_vac" title="Col3" />
</display:table>