if ( !localList.isEmpty() ){
responseHTML.append( "<table align=\"left\" width='100%' border='0' >");
for (Iterator iter = localList.iterator(); iter.hasNext();) {
responseHTML.append( "<tr>");
LocalItemLit local = (LocalItemLit) iter.next();
responseHTML.append("<td width='30%' align='left' height='25px' valign='top' > ");
responseHTML.append("<img src='../../images/icon_seta_ident.gif'/> ");
responseHTML.append( local.getIdentificacaoLit() +"</td>");
for (Iterator iterator = listaExercicios.iterator(); iterator.hasNext();) {
ExercicioExe exe = (ExercicioExe) iterator.next();
ItemEstrtIndResulLocalIettirl item = dao.getQtdePrevistaByLocal( codIettir, exe.getCodExe(), local.getCodLit() );
responseHTML.append( "<td width='14%' align=\"center\" >");
responseHTML.append( "<input type=\"text\" onblur=\"calcularTotalLocal('" );
responseHTML.append( local.getCodLit().toString() );
responseHTML.append( "');calcularTotalExercicio('"+exe.getCodExe().toString()+"');\" onmouseover=\"calcularTotalExercicio('"+exe.getCodExe().toString()+"');calcularTotalLocal('" +local.getCodLit().toString() + "');\" " );
responseHTML.append( " id=\"" );
responseHTML.append( "cmp|" + local.getCodLit().toString() + "|" + exe.getCodExe().toString() );
responseHTML.append( "\" name=\"" );
responseHTML.append( "cmp|" + local.getCodLit().toString() + "|" + exe.getCodExe().toString() );
responseHTML.append( "\" value=\"" + formatBrasil.format(item.getQtdPrevistaIettirl().doubleValue()) + "\"" );
responseHTML.append( "\" />" );
responseHTML.append( "<label class=\"dica\" onmouseover=\"montaTooltipMouseOver(this,\'"+ exe.getCodExe().toString() + "\',\'" + exe.getDescricaoExe() +"\',\'"+ local.getCodLit().toString() + "\',\'" + local.getIdentificacaoLit() +"\');\" onmouseout=\"montaTooltipMouseOut(\'"+ exe.getCodExe().toString() + "\',\'" + local.getCodLit().toString() +"\');\" >" );
responseHTML.append( "<img src=\"" + request.getContextPath() + "/images/dica.png\" align=\"absmiddle\" border=\"0\" onclick=\"montaTooltipMouseClick(\'"+ exe.getCodExe().toString() + "\',\'" + exe.getDescricaoExe() +"\',\'"+ local.getCodLit().toString() + "\',\'" + local.getIdentificacaoLit() +"\');\" > " );
responseHTML.append( "<span id=\"" + local.getCodLit().toString() + "|" + exe.getCodExe().toString() + "\" ></span></label>" );
responseHTML.append( "</td>");
}
responseHTML.append( "<td width='14%' align=\"center\" >");
responseHTML.append( "<input type=\"text\" id=\"" );
responseHTML.append( "cmp|" + local.getCodLit().toString() + "|total");
responseHTML.append( "\" name=\"" );
responseHTML.append( "cmp|" + local.getCodLit().toString() + "|total");
responseHTML.append( "\" value=\"0,00\" />" );
responseHTML.append( "</td>");
responseHTML.append( "</tr>");