Created
August 26, 2023 21:30
-
-
Save gridphp/bc7e275c053ea2e60afa12d7ff09554b to your computer and use it in GitHub Desktop.
Master Detail with Bootstrap5 css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* PHP Grid Component | |
* | |
* @author Abu Ghufran <gridphp@gmail.com> - http://www.phpgrid.org | |
* @version 2.0.0 | |
* @license: see license.txt included in package | |
*/ | |
// include db config | |
include_once("../../config.php"); | |
// include and create object | |
include(PHPGRID_LIBPATH."inc/jqgrid_dist.php"); | |
// master grid | |
// Database config file to be passed in phpgrid constructor | |
$db_conf = array( | |
"type" => PHPGRID_DBTYPE, | |
"server" => PHPGRID_DBHOST, | |
"user" => PHPGRID_DBUSER, | |
"password" => PHPGRID_DBPASS, | |
"database" => PHPGRID_DBNAME | |
); | |
$grid = new jqgrid($db_conf); | |
$opt["caption"] = "Clients Data"; | |
$opt["height"] = "150"; | |
// following params will enable subgrid -- by default first column (PK) of parent is passed as param 'id' | |
$opt["detail_grid_id"] = "list2"; | |
// extra params passed to detail grid, column name comma separated | |
$opt["subgridparams"] = "client_id,gender,company"; | |
$opt["multiselect"] = false; | |
$opt["export"] = array("filename"=>"my-file", "sheetname"=>"test", "format"=>"pdf"); | |
$opt["export"]["range"] = "filtered"; | |
$grid->set_options($opt); | |
$grid->table = "clients"; | |
$grid->set_actions(array( | |
"add"=>true, // allow/disallow add | |
"edit"=>true, // allow/disallow edit | |
"delete"=>false, // allow/disallow delete | |
"rowactions"=>true, // show/hide row wise edit/del/save option | |
"export"=>true, // show/hide export to excel option | |
"autofilter" => true, // show/hide autofilter for search | |
"search" => "advance" // show single/multi field search condition (e.g. simple or advance) | |
) | |
); | |
$out_master = $grid->render("list1"); | |
// =========================================================================== | |
// detail grid | |
$grid = new jqgrid($db_conf); | |
$opt = array(); | |
$opt["sortname"] = 'id'; // by default sort grid by this field | |
$opt["sortorder"] = "desc"; // ASC or DESC | |
$opt["datatype"] = "local"; // stop loading detail grid at start | |
$opt["height"] = ""; // autofit height of subgrid | |
$opt["caption"] = "Invoice Data"; // caption of grid | |
$opt["multiselect"] = true; // allow you to multi-select through checkboxes | |
$opt["reloadedit"] = true; // reload after inline edit | |
$opt["add_options"]["afterShowForm"] = "function(){ jQuery('#client_id').val( jQuery('#list1').jqGrid('getGridParam','selrow') ); }"; | |
$opt["edit_options"]["afterShowForm"] = "function(){ jQuery('#client_id').val( jQuery('#list1').jqGrid('getGridParam','selrow') ); }"; | |
$grid->set_options($opt); | |
// receive id, selected row of parent grid | |
$id = intval($_GET["rowid"]); | |
$gender = $_GET["gender"]; | |
$company = $_GET["company"]; | |
$cid = intval($_GET["client_id"]); | |
// and use in sql for filteration | |
$grid->select_command = "SELECT id,client_id,invdate,amount,tax,note,total FROM invheader WHERE client_id = $id"; | |
// this db table will be used for add,edit,delete | |
$grid->table = "invheader"; | |
$col = array(); | |
$col["title"] = "Id"; // caption of column | |
$col["name"] = "id"; // field name, must be exactly same as with SQL prefix or db field | |
$col["width"] = "20"; | |
$cols[] = $col; | |
$col = array(); | |
$col["title"] = "Client"; | |
$col["name"] = "client_id"; | |
$col["width"] = "100"; | |
$col["align"] = "left"; | |
$col["search"] = true; | |
$col["editable"] = true; | |
$col["edittype"] = "select"; // render as select | |
$str = $grid->get_dropdown_values("select distinct client_id as k, name as v from clients"); | |
$col["editoptions"] = array("value"=>$str); | |
$cols[] = $col; | |
$col = array(); | |
$col["title"] = "Date"; | |
$col["name"] = "invdate"; | |
$col["formatter"] = "date"; | |
$col["width"] = "100"; | |
$col["search"] = true; | |
$col["editable"] = true; | |
$cols[] = $col; | |
$col = array(); | |
$col["title"] = "Amount"; | |
$col["name"] = "amount"; | |
$col["width"] = "100"; | |
$col["search"] = true; | |
$col["editable"] = true; | |
$cols[] = $col; | |
$col = array(); | |
$col["title"] = "Total"; | |
$col["name"] = "total"; | |
$col["width"] = "100"; | |
$col["search"] = true; | |
$col["editable"] = false; | |
$cols[] = $col; | |
$col = array(); | |
$col["title"] = "Invoices"; | |
$col["name"] = "note"; | |
$col["width"] = "100"; | |
$col["search"] = true; | |
$col["editable"] = true; | |
$cols[] = $col; | |
$grid->set_columns($cols); | |
$grid->set_actions(array( | |
"add"=>true, // allow/disallow add | |
"edit"=>true, // allow/disallow edit | |
"delete"=>true, // allow/disallow delete | |
"rowactions"=>true, // show/hide row wise edit/del/save option | |
"autofilter" => true, // show/hide autofilter for search | |
"search" => "advance" // show single/multi field search condition (e.g. simple or advance) | |
) | |
); | |
// generate grid output, with unique grid name as 'list1' | |
$out_detail = $grid->render("list2"); | |
?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/themes/redmond/jquery-ui.custom.css"></link> | |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<link href="https://getbootstrap.com/docs/5.1/examples/sidebars/sidebars.css" rel="stylesheet"> | |
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/jqgrid/css/ui.jqgrid.bs.css"> | |
<script src="../../lib/js/jquery.min.js" type="text/javascript"></script> | |
<script src="../../lib/js/jqgrid/js/i18n/grid.locale-en.js" type="text/javascript"></script> | |
<script src="../../lib/js/jqgrid/js/jquery.jqGrid.min.js" type="text/javascript"></script> | |
<script src="../../lib/js/themes/jquery-ui.custom.min.js" type="text/javascript"></script> | |
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> | |
</head> | |
<body> | |
<div style="margin:10px"> | |
<?php echo $out_master ?> | |
<br> | |
<?php echo $out_detail; ?> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment