i have a table wich works perfect made with struts 2 and displaytag
<display:table name="session.listaNotificaciones" excludedParams="*"
requestURI="navegarNuevoEnvio.action" class="tablacoin"
summary="Listado de Notificaciones" cellspacing="0"
cellpadding="0"
uid="listaContatosTable">
<display:column title="Estado" sortProperty="estado_Nue"
sortable="false"
headerClass="sortable" defaultorder="descending"
style="width:12% ;color:red">
<s:property
value="%{@registradores.utiles.enumerados.EstadoTramite@convertirTexto(#attr.listaContatosTable.estado_Nue)}"
/>
</display:column>
<display:column title="Archivo" headerClass="sortable"
sortable="false" defaultorder="descending"
style="width:12% ;color:black">
<s:hidden key="estado"
value="%{#attr.listaContatosTable.estado_Nue}" />
<s:submit id="botonNotificacion" value="Notificación"
cssClass="boton"
onclick="enviarA('descargarDocumentoNotificacionAcuse.action')"/>
</display:column>
The problem is that i have declared in the action
private String estado;
And i get all values from estado_Nue, but i only need the value wich i have
"clicked"
Thx for all your help