Forum


21:39

31/10/2008

Hello!
i use datatype 'Json'
search works well, but when i pressed reset button, i haven't got correct results. Editbox "searchString" cleaned off, but grid hasn't reloaded
How solve this problem?
<?php
$page = $_GET['page'];
$limit = $_GET['rows'];
$sidx = $_GET['sidx'];
$sord = $_GET['sord'];
$sField = $_GET['searchField'];
$sValue = $_GET['searchString'];
$sOper = $_GET['searchOper'];
switch ($sOper) {
- // -
}
if(!$sidx) $sidx =1;
$db = mysql_connect("localhost", $user, $pass) or die("Connection Error: " . mysql_error());
mysql_select_db("base") or die("Error conecting to db.");
$result = mysql_query("SELECT COUNT(*) AS count FROM table");
$row = mysql_fetch_array($result,MYSQL_ASSOC);
$count = $row['count'];
if( $count >0 ) {
$total_pages = ceil($count/$limit);
} else {
$total_pages = 0;
}
if ($page > $total_pages) $page=$total_pages;
$start = $limit*$page - $limit;
if($start <0) $start = 0;
$SQL = "SELECT * FROM table ORDER BY $sidx $sord LIMIT $start , $limit";
$result = mysql_query( $SQL ) or die("Couldn t execute query.".mysql_error());
$responce->page = $page;
$responce->total = $total_pages;
$responce->records = $count;
$i=0;
while($row = mysql_fetch_array($result,MYSQL_ASSOC)) {
$responce->rows[$i]['id']=$i;
$responce->rows[$i]['cell']=array($row[a],$row[b],$row[c],$row[d],$row[e]);
$i++;
}
echo json_encode($responce);
?>
06:59

Moderators
30/10/2007

Hello,
Take care of variable _serach it is true or false. Download the exmples to
chack how to configure this in PHP.
Regards
Tony
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
Most Users Ever Online: 715
Currently Online:
55 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Top Posters:
OlegK: 1255
markw65: 179
kobruleht: 144
phicarre: 132
YamilBracho: 124
Renso: 118
Member Stats:
Guest Posters: 447
Members: 11373
Moderators: 2
Admins: 1
Forum Stats:
Groups: 1
Forums: 8
Topics: 10592
Posts: 31289
Newest Members:
, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.comModerators: tony: 7721, Rumen[Trirand]: 81
Administrators: admin: 66