<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: jqgrid</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-4</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/jqgrid-4/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on jqgrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p31011</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p31011</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>Try to clear your browser cache and try to register.</p>
<p>Also in this case we recommend you to use Chrome browser.</p>
<p>Please report this problem to support at trirand dot net.</p>
<p>If you can not register, please send the problem to the above e-mail.</p>
<p>Â </p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 25 Aug 2014 18:05:16 +0300</pubDate>
        </item>
        <item>
        	<title>hindos on jqgrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p31007</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p31007</guid>
        	        	<description><![CDATA[<blockquote>
<p><strong>tony said </strong><br />
Hello,</p>
<p> Â </p>
<p> Please post your question<a href="http://www.trirand.net/forum/default.aspx?g=forum" target="_blank"> here</a></p>
<p> Â </p>
<p> Regards</p>
</blockquote>
<p>there is a Â problem Â of registration!!!!!!!!!!</p>
]]></description>
        	        	<pubDate>Fri, 22 Aug 2014 16:09:59 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqgrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p31001</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p31001</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>Please post your question<a href="http://www.trirand.net/forum/default.aspx?g=forum" target="_blank"> here</a></p>
<p>Â </p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Thu, 21 Aug 2014 17:02:17 +0300</pubDate>
        </item>
        <item>
        	<title>hindos on jqgrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p30997</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-4#p30997</guid>
        	        	<description><![CDATA[<p>hii !!! i using jqgrid Â (jqsuitePHP 4.6 ) but nothing appears Â what's the problem !! pleaaase helpÂ </p>
<p>grid.php</p>
<p>&#60;?php<br />
require_once 'jq-config.php';<br />
// include the jqGrid Class<br />
require_once ABSPATH."php/jqGrid.php";<br />
// include the driver class<br />
require_once ABSPATH."php/jqGridPdo.php";<br />
// Connection to the server<br />
$dns = 'mysql:host=localhost;dbname=gestion_conges';<br />
 $utilisateur = 'root';<br />
 $motDePasse = '';<br />
 $conn= new PDO( $dns, $utilisateur, $motDePasse );<br />
// MySQL specific command for the charset<br />
// Tell the db that we use utf-8<br />
$conn-&#62;query("SET NAMES utf8");<br />
// Create the jqGrid instance<br />
$grid = new jqGridRender($conn);<br />
// Data from this SQL is 1252 encoded, so we need to tell the grid<br />
// Set the SQL Data source<br />
$table = 'personnel';<br />
$grid-&#62;SelectCommand ='SELECT * FROM '.$table;<br />
// set the ouput format to XML<br />
$grid-&#62;dataType = 'json';<br />
// Let the grid create the model<br />
$grid-&#62;setColModel();<br />
// set labels in the header<br />
$grid-&#62;setColProperty("nom", array("label"=&#62;"Nom"));<br />
$grid-&#62;setColProperty("prenom", array("label"=&#62;"Prenom"));<br />
$grid-&#62;setColProperty("date", array("label"=&#62;"Date de naissance"));<br />
$grid-&#62;setColProperty("cin", array("label"=&#62;"CIN"));<br />
$grid-&#62;setColProperty("type", array("label"=&#62;"Type"));<br />
$grid-&#62;setColProperty("num1", array("label"=&#62;"TÃ©lÃ©phone(1)"));<br />
$grid-&#62;setColProperty("num2", array("label"=&#62;"TÃ©lÃ©phone(2)"));<br />
$grid-&#62;setColProperty("adresse", array("label"=&#62;"Adresse"));<br />
$grid-&#62;setColProperty("matricule", array("label"=&#62;"Matricule"));</p>
<p>$grid-&#62;setUrl('grid.php');<br />
// Set some grid options<br />
//$grid-&#62;setGridOptions(array("rowNum"=&#62;10,"rowList"=&#62;array(10,20,30),"sortname"=&#62;"CategoryID"));<br />
// Enable toolbar searching<br />
/*$sql = 'SELECT * FROM personnel';<br />
$req = $conn-&#62;query($sql);<br />
 while($row = $req-&#62;fetch()) {<br />
 echo $row['nom']."&#60;br/&#62;";<br />
 }<br />
 $req-&#62;closeCursor(); */<br />
$grid-&#62;toolbarfilter = true;<br />
$grid-&#62;setFilterOptions(array("stringResult"=&#62;true));<br />
// Enjoy<br />
$grid-&#62;renderGrid('#grid','#pager',true, null, null, true,true);<br />
$conn = null;<br />
?&#62;</p>
<p>Â </p>
<p>grid.html</p>
<p>&#60;?php<br />
require_once 'tabs.php';<br />
?&#62;<br />
&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62;<br />
&#60;html&#62;<br />
 &#60;head&#62;<br />
 &#60;title&#62;jqGrid PHP Demo&#60;/title&#62;<br />
 &#60;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&#62;<br />
 &#60;link rel="stylesheet" type="text/css" media="screen" href="themes/redmond/jquery-ui-1.8.2.custom.css" /&#62;<br />
 &#60;link rel="stylesheet" type="text/css" media="screen" href="themes/ui.jqgrid.css" /&#62;<br />
 &#60;link rel="stylesheet" type="text/css" media="screen" href="themes/ui.multiselect.css" /&#62;<br />
 &#60;style type="text"&#62;<br />
 html, body {<br />
 margin: 0; /* Remove body margin/padding */<br />
 padding: 0;<br />
 overflow: hidden; /* Remove scroll bars on browser window */<br />
 font-size: 75%;<br />
 }<br />
 &#60;/style&#62;<br />
 &#60;script src="js/jquery.js" type="text/javascript"&#62;&#60;/script&#62;<br />
 &#60;script src="js/i18n/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;<br />
 &#60;script type="text/javascript"&#62;<br />
 $.jgrid.no_legacy_api = true;<br />
 $.jgrid.useJSON = true;<br />
 &#60;/script&#62;<br />
 &#60;script src="js/jquery.jqGrid.min.js" type="text/javascript"&#62;&#60;/script&#62;<br />
 &#60;script src="js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"&#62;&#60;/script&#62;<br />
 &#60;/head&#62;<br />
 &#60;body&#62;<br />
 &#60;div&#62;<br />
 &#60;?php include ("grid.php");?&#62;<br />
 &#60;/div&#62;<br />
 &#60;br/&#62;<br />
 &#60;?php tabs(array("grid.php"));?&#62;<br />
 &#60;/body&#62;<br />
&#60;/html&#62;</p>
<p><!--?php  
require_once 'tabs.php'; 
?--><br />
Â </p>
<p>jqGrid PHP Demo </p>
<p>// </p>
<div>Â </div>
<p><!--?php tabs(array("grid.php"));?--><br />
?&#62;</p>
]]></description>
        	        	<pubDate>Thu, 21 Aug 2014 15:02:48 +0300</pubDate>
        </item>
</channel>
</rss>