problems with scroll-y

problems with scroll-y

Maverick2786Maverick2786 Posts: 5Questions: 1Answers: 0
edited May 2015 in Free community support

Js:

    var xhr = $.ajax({
    url: "libs/listar_datos.php",
    type: "POST",
    cache: false,
    statusCode: {
        404: function() {
            alert("La página no existe (ver listado)");
        }
    },
    context: document.body//se especifica como se procesara la informacion recivida, en este caso elementos para el cuerpo del doclumento html
}).done(function(dato) {//callBack
    $("#table1").html(dato);
    $('#tabla_lista_datos').dataTable({//CONVERTIMOS NUESTRO LISTADO DE LA FORMA DEL JQUERY.DATATABLES- PASAMOS EL ID DE LA TABLA
        "scrollY":        "100px",
        "aoColumnDefs": [ { 'bSortable': false, 'aTargets': [ 0,1 ] } ],
        "iDisplayLength": 10,
        "sDom": ''
    });
    xhr.abort();
});

listar.datos.php:

    <table cellpadding="0" cellspacing="0" border="0" class="display" id="tabla_lista_datos">
<thead>
    <tr>
        <th width="45%" align="center"></th>
        <th></th>
    </tr>
</thead>

<tbody>
    <?php
        echo '<tr>';
        echo "<td align=\"center\" style='width:70%'> $pregunta </td>";
        if ($respuesta == 1) {
            echo "<td>"
            . "<input id='chb_$id_resultado_verificacion_supervision' type='checkbox' name='' value='' checked/> "
            . "</td>";
        } else {
            echo "<td>"
            . "<input id='chb_$id_resultado_verificacion_supervision' type='checkbox' name='' value=''/> "
            . "</td>";
        }
        echo "<td>"
        . "<textarea id='tt_$id_resultado_verificacion_supervision' name='' rows='2' cols='30x'> $observacion_rvs</textarea>"
        . '</td>';

        echo '</tr>';
    }

    $_SESSION['$array_id_resultado_verificacion_supervision'] = $array_id_resultado_verificacion_supervision;
    ?>

<tbody>

It does not show the change in scroll and height

Thanks for the help
</table>

This discussion has been closed.