automatic paging

automatic paging

joao_oliveirajoao_oliveira Posts: 32Questions: 0Answers: 0
edited November 2013 in General
How do automatic pagination, need to change the page of my tables automatically, without manual interference.

My Souce...


$(document).ready(function() {

var oTable = $('#tbleitos').dataTable( {
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
//classificação de colunas
"bSort": false,
"bInfo": false,
//largura inteligente
"bAutoWidth": false,
//envio de mensagens do Display
"oLanguage": {
"sProcessing": "Aguarde enquanto os dados são carregados …",
"sLengthMenu": "Mostrar _MENU_ registros por pagina",
"sZeroRecords": " - NÃO HÁ REGISTRO DISPONÍVEL PARA A DATA ATUAL - ",
},

//configuração das colunas
"aoColumns" : [ {
"sWidth": "10px"},
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null],

"bProcessing": false,
"bServerSide": true,
//Aatualização em real-time
"sAjaxSource": "consulta_cirurgias.php?sEcho=0" } );

setInterval(function()
{
//oTable.fnReloadAjax("consulta_cirurgias.php?sEcho=1");
oTable.fnDraw();
//dataTable.fnCreatedRow("consulta_cirurgias.phpsEcho=1");
//$('table.dataTable td').css('font-size', 70);
},3000);
//3 segundos
} );
This discussion has been closed.