Skip to content

Instantly share code, notes, and snippets.

@gridphp
Last active June 14, 2020 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gridphp/329b0505065d67c00b810f5b65ac173f to your computer and use it in GitHub Desktop.
Save gridphp/329b0505065d67c00b810f5b65ac173f to your computer and use it in GitHub Desktop.
Dblclick on parent grid, not subgrid. - https://www.gridphp.com
<?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");
// 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"] = "";
// following params will enable subgrid -- by default 'rowid' (PK) of parent is passed
$opt["subGrid"] = true;
$opt["subgridurl"] = "multi-subgrid_detail.php";
// $opt["subgridparams"] = "name,gender,company"; // comma sep. fields. will be POSTED from parent grid to subgrid, can be fetching using $_POST in subgrid
$grid->set_options($opt);
$grid->table = "clients";
$out = $grid->render("list1");
?>
<!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 rel="stylesheet" type="text/css" media="screen" href="../../lib/js/jqgrid/css/ui.jqgrid.css"></link>
<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>
</head>
<body>
<script>
// show dialog on parent dblclick, not on subgrid
var opts_list1 = {
'ondblClickRow': function (id,r,c,e) {
if ($(e.target).closest('.ui-jqgrid').attr('id') == "gbox_list1")
{
jQuery(this).jqGrid('editGridRow', id, <?php echo json_encode_jsfunc($grid->options["edit_options"])?>);
e.stopImmediatePropagation();
}
}
};
</script>
<div style="margin:10px">
Subgrid example ... this file will load subgrid defined in 'multi-subgrid_detail.php'
<br>
<br>
<?php echo $out?>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment