Saudações à Todos que Tiveram o Interesse em meu Problema,
Estou tentando trazer os registros do banco de dados dinamicamente por intermédio do DWR.
<script type="text/javascript">
// função Init()
var cell = [
function(obj) { return "<a >" + obj.cod + "</a>"; },
function(obj) { return "<a >" + obj.descricao + "</a>"; },
function(obj) { return "<a >" + toSituacaoName(obj.situacao) + "</a>"; },
function(obj) { return "<a >" + obj.usuarioCadastroNome + " - " + dateTimeFormat(obj.dataCadastro) + "</a>";},
function(obj) { return "<a >" + obj.usuarioAlteracaoNome + " - " + dateTimeFormat(obj.dataAlteracao)+ "</a>";}
];
// Funções de Consulta e Páginação (Obs: Eu as testei, estão funcionando corretamente)
function callback ( obj ) {
DWRUtil.removeAllRows("tabela");
if( obj.length > 0 )
{
DWRUtil.addRows( "tabela",obj,cell,{
rowCreator:function(options)
{
var row = document.createElement("tr");
var index = options.rowIndex;
if((index%2)==0)
{
row.style.background = "#F7F7F7";
}
else
{
row.style.background = "#E7E7E7";
}
return row;
}
,
cellCreator:function(options)
{
return document.createElement("td");
}
});
}
else
{
noRecordFoundMessage("tabela");
}
}
</script>
<table width="601" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<img >
</td>
</tr>
<tr>
<td colspan="2">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td colspan="3">
<span class="arialNegrito">Pesquise • Descrição</span>
</td>
</tr>
<tr>
<td width="300">
<input type="text" id="descricao" maxlength="10" size="45"/>
<input type="button" name="btnOk" id="btnOk" onclick="javascript:findByDescricaoLikeInit()" value="OK" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="left" colspan="2">
<div style="overflow: scroll; z-index: 1; width: 600px; height: 180px">
<table border="0" cellpadding="3" cellspacing="1" width="960">
<thead>
<tr bgcolor="#666666" align="left">
<th width="30"><span class="arialBrancaNegrito">Número</span></th>
<th width="200"><span class="arialBrancaNegrito">Descrição</span></th>
<th width="30"><span class="arialBrancaNegrito">Situação</span></th>
<th width="350"><span class="arialBrancaNegrito">Criado por - em</span></th>
<th width="350"><span class="arialBrancaNegrito">Alterado por - em</span></th>
</tr>
</thead>
<tbody id="tabela" class="arialPreta"></tbody>
</table>
</div>
</td>
</tr>
</table>
<script type="text/javascript">
findInit();
</script>
Saudações a Todos,
Tenho feito esse script repetidamente em N páginas porém, essa página em especial, não está apresentando
as linhas ( que são geradas pelo DWR através da função addRows() ) no [color=red]Navegador Internet explorer[/color].
Ao fazer essa consulta segui as recomentações documentadas no site do DWR
http://getahead.org/dwr/browser/addRows
Se alguém puder me ajudar,pelo menos, à entender o problema ficarei muito grato.
Obrigado pela Atenção.