Answer the question
In order to leave comments, you need to log in
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)
{
for($i = $min; $i <= $cnt; $i++)
{
if ($cols[$i])
{
?>
<td><div id="<?php echo $i.'_'.$date.'_1_2' ?>" align="center">
<?php
//соответсвенно здесь нужно обратиться к аякс файлу и передать координаты ячейки
?></div></td> <?php
}
}
?>
Answer the question
In order to leave comments, you need to log in
Воспользуйтесь плагином Waypoints например. Этот плагин позволяет выполнять произвольный код, когда вы прокручивая страницу достигаете определенного элемента. А уж этот код может быть аякс-запросом за новыми строчками для таблицы.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question