Bom dia Pessoal,
seguinte, estou com essa jsp a baixo:
<body>
<div id="divPesquisaNoticia" style="width:600px;">
<s:form name="form1" action="noticia_listar.action" id="form1" theme="simple" onsubmit="return pesquisaQuilometragem()">
<table width="100%" border="0">
<tr>
<td width="16%">Data Inicial:</td>
<td>
<s:textfield
id="dataInicial"
name="dataInicial"
maxLength="10"
size="12"
onkeypress="return filtroCaracteres(event,'0123456789')"
onkeyup="formatarData('dataInicial',event)"
onblur="return isDataValida(dataInicial)"
>
</s:textfield>
</td>
<td width="16%">Data Final:</td>
<td>
<s:textfield
id="dataFinal"
name="dataFinal"
maxLength="10"
size="12"
onkeypress="return filtroCaracteres(event,'0123456789')"
onkeyup="formatarData('dataFinal',event)"
onblur="return isDataValida(dataFinal)">
</s:textfield>
</td>
<td width="18%" align="right">
<s:submit
id=""
value="Pesquisar"
theme="gipAjax"
showLoadingText="false"
title="Pesquisar"
cssClass="BTN">
</s:submit>
</td>
</tr>
<tr>
<td colspan="7" align="right">
<INPUT
type="button"
value="Novo"
Title="Inserir Registro"
onclick="window.location='<s:text name="noticia_cadastrar.action"/>'"
class="BTNADD">
</td>
</tr>
</table>
</s:form>
</div>
<table id="tableListarNoticia" width="600px" border="0">
<tr class="classeTabelaUsuario">
<th align="center" width="63px">Ações</th>
<th align="center" width="90px">Data</th>
<th align="left" width="400px" style="text-indent:5px;">Título</th>
</tr>
</table>
<div id="divListarNoticia">
<s:if test="%{noticias != null}">
<s:if test="%{noticias.size() != 0}">
<s:form id="listNoticias" name="listNoticias">
<table id="tableListarNoticia" width="600px" border="0">
<s:iterator value="noticias" id="noticias" status="status">
<s:if test="(#status.index % 2) == 0">
<tr class="TR_Rel_Dados_Cinza">
</s:if>
<s:else>
<tr class="TR_Rel_Dados_Branco">
</s:else>
<td align="center" width="30px">
<s:url id="urlEditar" action="noticia_cadastrar.action" includeParams="one">
<s:param name="noticia.id" value="id"/>
</s:url>
<INPUT
type="button"
value="E"
Title="Editar"
onclick="window.location='<s:text name="%{urlEditar}"/>'"
class="BTNUPD">
</td>
<td align="center" width="30px">
<s:url id="urlExcluir" action="noticia_excluir.action" includeParams="one">
<s:param name="noticia.id" value="id"/>
</s:url>
<INPUT
type="button"
value="X"
Title="Excluir"
onclick="confirmaExcluir('<s:property value='%{urlExcluir}'/>');"
class="BTNDEL">
</td>
<td align="center" width="91px"><s:date name="dataPublicacao.getTime()" format="dd/MM/yyyy"/></td>
<td align="left" width="400px" style="text-indent:5px;"><s:property value="titulo"/></td>
</tr>
</s:iterator>
</table>
</s:form>
</s:if>
<s:else>
<br>
<p> Não há itens para serem exibidos.</p>
</s:else>
</s:if>
</div>
</body>
Essa JSP ta apresentando normalmente os dados quando o método pesquisar é chamado, porém quando é solicitado a exclusão de qualquer item q foi listado, após a exclusão deveria listar e manter a datainicial e a datafinal nos seus respectivos campos, porem não esta acontecendo isso, os campos ficam em branco. Alguem pode me ajudar a resolver isso?