Forum

November 2nd, 2014
A A A
Avatar

Lost password?
Advanced Search

— Forum Scope —




— Match —





— Forum Options —





Minimum search word length is 3 characters - maximum search word length is 84 characters

The forums are currently locked and only available for read only access
sp_Feed Topic RSS sp_TopicIcon
Reset button hasn't any effect on search results
13/11/2008
21:39
Avatar
SergeyK
Member
Members
Forum Posts: 13
Member Since:
31/10/2008
sp_UserOfflineSmall Offline

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);
?>

14/11/2008
06:59
Avatar
tony
Sofia, Bulgaria
Moderator
Members

Moderators
Forum Posts: 7721
Member Since:
30/10/2007
sp_UserOfflineSmall Offline

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.

Forum Timezone: Europe/Sofia

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.com

Moderators: tony: 7721, Rumen[Trirand]: 81

Administrators: admin: 66

Comments are closed.
Privacy Policy   Terms and Conditions   Contact Information