MI TABLA EN LA PARTE NO FUNCIONA EL RESPONSIVE

MI TABLA EN LA PARTE NO FUNCIONA EL RESPONSIVE

cutti1990cutti1990 Posts: 1Questions: 1Answers: 0

NECESITO AYUDA, TENGO UNA TABLA DONDE TRAIGO POR JSON DATA Y CUANDO ACHICO LA TABLA NO FUNCIONA OH NO SE ACOMODA AL TAMAÑO LA PARTE DEL <thead> ME DESCUADRA TODO, NECESITO UNA AYUDA URGENTE.

$('#myTable').DataTable({
"bAutoWidth": false,
"ajax": "modelo/vista/json_vista.php",
"destroy": true,
"responsive": true,
"scrollX": true,

    "columns": [
        {
            "orderable": false,
            "render": function (data, type, full, meta) {
                var id_marca = full.I043ID_MARCA;
                return '<center><a class="manito" onclick="buscar_editar(' + id_marca + ')"> <span class="glyphicon glyphicon-edit"></span> </a><center>';
            }
        },
        {"data": "V043NOMBRE"},
        {"data": "usuario"},
        {
            "orderable": false,
            "render": function (data, type, full, meta) {
                var id_marca = full.I043ID_MARCA;
                return '<center><a class="manito" onclick="buscar_eliminar(' + id_marca + ')"><span class="glyphicon glyphicon-remove-sign"></a></center>';
            }
        }
    ],
    "order": [[1, 'asc']],
    "dom": 'T<"clear">lfrtip',
    "scrollX": true,
    "tableTools": {
        "aButtons": [
            "print"
        ]
    }
});

PARTE HTML:

Edit Marca UsuCrea Eliminar
Marca Usu

NECESITO SU AYUDA POR FAVOR CUANDO ACHICO LA PANTALLA LA PARTE TBODY HACE EL RESPONSIVE PERO EL THEAD NO SE QUEDA ESTATICO.

.

This discussion has been closed.