Hola tengo una consulta, estoy programando con Struts2 y usando taglib, para pintar valores y tambien uso tag para hacer unas validaciones para mostrar y/o ocultar campos, asi:
Código:
<table>
<tr>
<td colspan="6" class="tablasIn">
<table width="1236" border="0" class="style14">
<tr>
<c:if test="${(beansCal02.flagBebidaHumana == true)}">
<td>• Bebida humana</td>
</c:if>
<c:if test="${(beansCal02.flagVidaAcuaticaDulce == true)}">
<td>• Protección de vida acuática (A. dulce)</td>
</c:if>
<c:if test="${(beansCal02.flagVidaAcuaticaSalada == true)}">
<td>• Protección de vida acuática (A. salada)</td>
</c:if>
<c:if test="${(beansCal02.idColor == null)}">
--
</c:if>
<c:if test="${(beansCal02.idColor != ' ')}">
<s:hidden name="beansCal02.idColor"/>
<s:label name="nameColorCal02"/>
</c:if>
</table>
</td>
</tr>
</table>
Pero ahora lo tengo que hacer ese mismo proceso en iframe, alguien me puede aconcejar de como manejarlo.