D
D
des1roer2015-09-08 11:19:09
JavaScript
des1roer, 2015-09-08 11:19:09

Ajax request to database?

I want lazy load for a large amount of data.
idea such - I draw the table and by means of ajax I display the received data at their readiness.
previously used something like this

$(document).ready(function () {
                    $.ajax({
                        type: "POST",
                        url: "/data/ajax.php?val=" + encodeURIComponent(val),
                        dataType: "json",
                        success: function (data)
                        {

How can I adapt to such conditions
for($i = $min; $i <= $cnt; $i++)
    {
        if ($cols[$i])
        {
            ?>
            <td><div id="<?php echo $i.'_'.$date.'_1_2' ?>" align="center">
                    <?php
//соответсвенно здесь нужно обратиться к аякс файлу и передать координаты ячейки
                    ?></div></td> <?php
                }
            }
            ?>

table 6 * 180 - each cell - the amount for a certain interval. First, the table is rendered using PHP. then Js load data into cells

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
des1roer, 2015-09-08
@des1roer

answer

D
Denis Ineshin, 2015-09-08
@IonDen

Воспользуйтесь плагином Waypoints например. Этот плагин позволяет выполнять произвольный код, когда вы прокручивая страницу достигаете определенного элемента. А уж этот код может быть аякс-запросом за новыми строчками для таблицы.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question