ホームページ >バックエンド開発 >PHPチュートリアル >jqGrid エクスポート Excel テーブル コード (php+jqgrid の例)_PHP チュートリアル

jqGrid エクスポート Excel テーブル コード (php+jqgrid の例)_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-20 11:08:09919ブラウズ

jqgrid 导出excel表格代码(php教程+jqgrid实例)
require_once '../../../tabs.php';
?>



 
    jqgrid php demo
   
   
   
   
   
   
   
   
   
   
 
 
     


         
     





php代码

require_once '../../../jq-config.php';
// jqgrid クラスをインクルードします
require_once abspath."php/jqgrid.php";
// ドライバークラスをインクルードします
require_once abspath."php/jqgridpdo.php";
// サーバーへの接続
$conn = new pdo(db_dsn,db_user,db_password);
// utf-8 を使用することをデータベースに伝えます
$conn->query("set names utf8");

// jqgrid インスタンスを作成します
$grid = new jqgridrender($conn);
// SQL クエリを作成します
$grid->selectcommand = 'select orderid、orderdate、customerid、freight、shipname from longorders';
// 出力形式を json に設定します
$grid->datatype = 'json';
// グリッドにモデルを作成させます
$grid->setcolmodel();
// データの取得元の URL を設定します
$grid->seturl('grid.php');
$grid->optimizesearch = true;
// いくつかのグリッド オプションを設定します
$grid->setgridoptions(array("rownum"=>100,"sortname"=>"orderid","height"=>150));
// フィールドのプロパティを変更します
$grid->setcolproperty("orderdate", array(
"formatter"=>"date",
"formatoptions"=>array("srcformat"= >"y-m-d h:i:s","newformat"=>"m/d/y"),
"search"=>false
)
);
// ツールバーの検索を有効にする
$grid->toolbarfilter = true;
$grid->setfilteroptions(array("stringresult"=>true));
// お楽しみください
$grid->rendergrid('#grid','#pager',true, null, null, true,true);
$conn = null;
?>


www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/444902.html技術記事 jqgrid 导出excel表格代码(php教程+jqgrid实例) require_once '../../../tabs.php'; ? !doctype html public -//w3c//dtd xhtml 1.0 strict//en http://www.w3.org/tr/xhtml1/dtd/xht...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。