105
| <![CDATA[<script>
$( document ).ready(function() {
$("#loader").hide();
});
$(function(){
$('.btnFiltroAno').click(function() {
var anoSelecionado = this.getAttribute('data-ano');
LimparInformacoes();
$.getJSON('docpublicoDB.php?search=',{ano: anoSelecionado, tipo: 4, id: 1, ajax: 'true'}, function(resultado){
CarregarInformacoes(resultado);
});
});
});
function LimparInformacoes() {
$('#tableDocs').DataTable().destroy();
$("#tableDocs tbody").empty();
$("#loader").show();
$('#tableDocs').hide();
}
function CarregarInformacoes(resultado) {
var result = '';
var tableContratos = '<th>Descrição</th>';
tableContratos += '<th>nummero</th>';
tableContratos += '<th>Arquivo</th>';
for (var i = 0; i < resultado.length; i++) {
if (resultado[i].contrato == false)
{
result += '<tr>';
result += '<td>' + resultado[i].descArquivo + '</td>';
result += "<td width='50'>" + resultado[i].numero + "</td>";
result += '<td>' + resultado[i].mes + '</td>';
result += '<td class="text-center"><a href="' + resultado[i].caminhoArquivo + '" target="_blank"><i title="Visualizar Arquivo" class="fa fa-file-pdf-o fa-lg"></i></td>';
result += '</tr>';
}
else
{
$("#tableDocs thead").empty();
$("#tableDocs thead").append(tableContratos);
result += '<tr>';
result += '<td>' + resultado[i].descArquivo + '</td>';
result += "<td width='50'>" + resultado[i].numero + "</td>";
result += '<td class="text-center"><a href="' + resultado[i].caminhoArquivo + '" target="_blank"><i title="Visualizar Arquivo" class="fa fa-file-pdf-o fa-lg"></i></td>';
result += '</tr>';
}
}
$("#loader").hide();
$('#tableDocs').show();
$("#tableDocs tbody").append(result);
var pageOptions = [15, 25, 50, 100];
$('#tableDocs').DataTable({
language: {
url: '//cdn.datatables.net/plug-ins/1.10.22/i18n/Portuguese-Brasil.json'
},
lengthMenu: pageOptions,
"order": [[ 1, "desc" ]]
});
}
</script>]]>
|