mesagge processing remains only on mobil devices not desktop and console developer not show errors

mesagge processing remains only on mobil devices not desktop and console developer not show errors

sergiomensergiomen Posts: 1Questions: 1Answers: 0

Hi, I have a trouble

I use DataTables 1.10.11 plugin

My datatable show mesagge processing and remains until i choose other page, only this error is on mobil devices not in desktop and google crome console developer not show errors.
If my record result was 1 page i don't have to take off the message of the screen.
If my record result was greater than 1 page i have to take off the message of the screen if i choose other page.

This is my code: I used Bootstrap modal, datatables responsive, server processing

Check out please, what i'm doing wrong or where is the error
thanks

$(document).ready(function() {

           var dataTable =  $('#mitabla').DataTable( {
                "language": {
                            "info": "Muestra pagina _PAGE_ de _PAGES_",
                            "infoEmpty": "No hay resultados",
                             "processing": "Espere,      Procesando...",
                             "loadingRecords": " ",
                             "zeroRecords": "No hay resultados",
                             "LengthMenu": "_MENU_ por pagina"
                            },              

                responsive: true,      
                responsive: {
                details: {
                        display: $.fn.dataTable.Responsive.display.modal( {
                            header: function ( row ) {
                                var data = row.data();
                                return 'DETALLE ';
                            }
                        } ),                    
                       renderer: function ( api, rowIdx, columns ) {
                           var data = $.map( columns, function ( col, i ) {
                            return '<tr>'+
                                    '<td>'+col.title+':'+'</td> '+
                                    '<td>'+col.data+'</td>'+
                                    '</tr>';
                            } ).join('');

                            return $('<table class="table"/>').append( data ) ;
                        }
                }
                },
            processing: true,
            serverSide: true,
            ajax: "api/miphp.php" // json datasource

            } );

$('.dataTables_filter input').attr('placeholder','buscar IdElec o Alerta...');
//DOM Manipulation to move datatable elements integrate to panel
$('.panel-ctrls').append($('.dataTables_filter').addClass("pull-right")).find("label").addClass("panel-ctrls-center");
$('.panel-ctrls').append("<i class='separator'></i>");
$('.panel-ctrls').append($('.dataTables_length').addClass("pull-left")).find("label").addClass("panel-ctrls-center");

$('.panel-footer').append($(".dataTable+.row"));
$('.dataTables_paginate>ul.pagination').addClass("pull-right m-n");             


 });
This discussion has been closed.