当前位置:Gxlcms > PHP教程 > jqGrid导出excel表格代码(php+jqgrid实例)_PHP教程

jqGrid导出excel表格代码(php+jqgrid实例)_PHP教程

时间:2021-07-01 10:21:17 帮助过:4人阅读

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




jqgrid php demo



















php代码

require_once '../../../jq-config.php';
// include the jqgrid class
require_once abspath."php/jqgrid.php";
// include the driver class
require_once abspath."php/jqgridpdo.php";
// connection to the server
$conn = new pdo(db_dsn,db_user,db_password);
// tell the db that we use utf-8
$conn->query("set names utf8");

// create the jqgrid instance
$grid = new jqgridrender($conn);
// write the sql query
$grid->selectcommand = 'select orderid, orderdate, customerid, freight, shipname from longorders';
// set the ouput format to json
$grid->datatype = 'json';
// let the grid create the model
$grid->setcolmodel();
// set the url from where we obtain the data
$grid->seturl('grid.php');
$grid->optimizesearch = true;
// set some grid options
$grid->setgridoptions(array("rownum"=>100,"sortname"=>"orderid","height"=>150));
// change some property of the field(s)
$grid->setcolproperty("orderdate", array(
"formatter"=>"date",
"formatoptions"=>array("srcformat"=>"y-m-d h:i:s","newformat"=>"m/d/y"),
"search"=>false
)
);
// enable toolbar searching
$grid->toolbarfilter = true;
$grid->setfilteroptions(array("stringresult"=>true));
// enjoy
$grid->rendergrid('#grid','#pager',true, null, null, true,true);
$conn = null;
?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444902.htmlTechArticlejqgrid 导出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...

人气教程排行