forked from arm2009/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframe_PoupUp_AjaxSelect.php
118 lines (99 loc) · 2.9 KB
/
frame_PoupUp_AjaxSelect.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?
include_once('LowLevel/dbConnect.php');
$sName = 'Заготовка для выборок';
if(isset($_POST[sName]))
{
$sName = $_POST[sName];
}
?>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="JS/jquery-ui-1.10.4.custom.min.js"></script>
<table width="715" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><div id="PoupUpMessage">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><?php echo $sName; ?></td>
</tr>
<tr>
<td><div id="MainDataCont" style="display:block;overflow:auto;margin:10px;border:#09C solid 1px;padding:10px;max-height:500px;" class="comment">
<table id="MainData">
<tbody>
</tbody>
</table>
</div></td>
</tr>
</table>
</div></td>
</tr>
<tr class="blockmargin">
<td> </td>
</tr>
<tr class="blockmargin">
<td height="1px" bgcolor="#0099CC"></td>
</tr>
<tr class="blockmargin">
<td> </td>
</tr>
<tr>
<td align="right"><div id="PoupUpButton">
<input type="submit" class="input_button" id="buttonOk" value="Выбрать" onclick=""/>
<input type="submit" class="input_button" id="buttonClose" value="Закрыть" onclick="progressInfo_hide(); return PoupUpMessgeClose();"/></div></td>
</tr>
</table>
<script>
var iPage = 1;
var iMaxPages = -1;
$('#MainDataCont').scroll( function() {
var recepientsContainerTop = $('#MainDataCont').position().top;
var recepientsContainerTopHeight = $('#MainDataCont').height();
var lastTrPos = $('#MainData > tbody > tr:last').position().top;
//высчитываем дошел ли пользователь до последней строки таблицы
if(lastTrPos > recepientsContainerTop && lastTrPos < (recepientsContainerTop+recepientsContainerTopHeight) ){
addData();
}
});
$(document).ready(function(){
addData();
var loadDataHandler = function (scrollData) {
alert('!');
//если больше данных нет, то нам больше получать данные не нужно
/*if(nextPage == null){
$('#recipientsUsersDataContainer').unbind('scroll',loadDataHandler);
return;
}*/
}
});
//Дозагрузка элементов
function addData()
{
if (iPage + 1 <= iMaxPages || iMaxPages == -1)
{
$.ajax({
type:'post',//тип запроса: get,post либо head
url:'aj_select.php',//url адрес файла обработчика
data:{'iPage':iPage},//параметры запроса
dataType: 'json',
//response:'text',
success:function (data)
{
if (data != null)
{
var i = 0;
iMaxPages = data.iPageCount;
iPage ++;
while (data.aResult[i][1] != null)
{
i++;
var html = "<tr><td>"+data.aResult[i][1]+"</td></tr>";
$("#MainData > tbody:last").append(html);
}
}
else
{
}
}
});
}
}
</script>