Skip to content

Instantly share code, notes, and snippets.

@gridphp
Last active June 14, 2020 20:02
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/fdb8ff6e41af9a64e370bfade9776884 to your computer and use it in GitHub Desktop.
Save gridphp/fdb8ff6e41af9a64e370bfade9776884 to your computer and use it in GitHub Desktop.
In case of large amount of data in dropdown, best is to use autocomplete - 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" => "griddemo22"
);
$g = new jqgrid($db_conf);
$grid["sortname"] = 'id'; // by default sort grid by this field
$grid["sortorder"] = "asc"; // ASC or DESC
$grid["caption"] = "Stores Location - Country/State/City wise"; // caption of grid
$grid["autowidth"] = true; // expand grid to screen width
// $grid["add_options"]["afterShowForm"] = "function(){ setup_fields(); }";
// $grid["edit_options"]["afterShowForm"] = "function(){ setup_fields(); }";
// show reload link with dropdown
$grid["add_options"]["afterShowForm"] = 'function(formid){ add_dropdown_action(formid); }';
$grid["edit_options"]["afterShowForm"] = 'function(formid){ add_dropdown_action(formid); }';
$g->set_options($grid);
if (empty($_POST["country_id"]))
$_POST["country_id"] = 0;
$g->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
)
);
$g->select_command = "SELECT store.id, store.country_id, store.state_id, city.name as cityname, store.name from store
left JOIN country on country.id = store.country_id
INNER JOIN city on city.id = store.city_id
INNER JOIN state on state.id = store.state_id
";
// this db table will be used for add,edit,delete
$g->table = "store";
$col = array();
$col["title"] = "Id"; // caption of column
$col["name"] = "id";
$col["width"] = "15";
$cols[] = $col;
$col = array();
$col["title"] = "Country";
$col["name"] = "country_id";
$col["dbname"] = "store.country_id";
$col["width"] = "100";
$col["align"] = "left";
$col["search"] = true;
$col["editable"] = true;
$col["edittype"] = "select"; // render as select
# fetch data from database, with alias k for key, v for value
// $sql_state_id = "";
// if (is_array($_POST["state_id"]))
// $_POST["state_id"] = implode(",",$_POST["state_id"]);
// if (!empty($_POST["state_id"]))
// $sql_state_id = ' AND state_id IN ({state_id})';
# on change, update other dropdown
$str = $g->get_dropdown_values("select distinct id as k, name as v from country");
$col["editoptions"] = array(
"value"=>":;".$str,
"onchange" => array(
"update_field"=>"state_id",
"sql"=>"select id as k, name as v from state WHERE country_id IN ({country_id})",
)
);
$col["formatter"] = "select"; // display label, not value
$col["stype"] = "select"; // enable dropdown search
$col["searchoptions"] = array("value" => $str);
$cols[] = $col;
$col = array();
$col["title"] = "State";
$col["name"] = "state_id";
$col["dbname"] = "store.state_id";
$col["width"] = "100";
$col["search"] = true;
$col["editable"] = true;
$col["edittype"] = "select"; // render as select
$str = $g->get_dropdown_values("select id as k, name as v from state");
$col["editoptions"] = array(
"value"=>":;".$str,
"onchange" => array( "update_field"=>"city_id",
"sql"=>"select city.id as k, city.name as v from city inner join state on city.state_id = state.id WHERE state_id IN ({state_id})"
)
);
// $col["editoptions"]["onload"]["sql"] = "select id as k, name as v from state WHERE country_id IN ({country_id})";
$col["formatter"] = "select"; // display label, not value
$col["stype"] = "select"; // enable dropdown search
$col["searchoptions"] = array("value" => ":;".$str);
$cols[] = $col;
$col = array();
$col["title"] = "City";
$col["name"] = "cityname";
$col["dbname"] = "city.name";
$col["width"] = "100";
$col["search"] = true;
$col["editable"] = true;
$col["formatter"] = "autocomplete"; // display label, not value
$col["formatoptions"] = array( "sql"=>"select id as k, name as v from city WHERE state_id = {state_id}",
"update_name"=>"city_id");
$cols[] = $col;
$col = array();
$col["title"] = "Store";
$col["name"] = "name";
$col["dbname"] = "store.name";
$col["width"] = "50";
$col["editable"] = true; // this column is editable
$col["editoptions"] = array("size"=>20); // with default display of textbox with size 20
$col["editrules"] = array("required"=>true); // and is required
$cols[] = $col;
// pass the cooked columns to grid
$g->set_columns($cols);
// generate grid output, with unique grid name as 'list1'
$out = $g->render("list1");
?>
<!DOCTYPE html>
<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>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-multiselect-widget/1.17/jquery.multiselect.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-multiselect-widget/1.17/jquery.multiselect.filter.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-multiselect-widget/1.17/jquery.multiselect.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-multiselect-widget/1.17/jquery.multiselect.filter.js"></script>
<!-- Add fancyBox main JS and CSS files
<link type="text/css" rel="stylesheet" href="//cdn.jsdelivr.net/fancybox/2.1.4/jquery.fancybox.css" />
<script type="text/javascript" src="//cdn.jsdelivr.net/fancybox/2.1.4/jquery.fancybox.js"></script>
-->
</head>
<body>
<div style="margin:10px">
<?php echo $out?>
</div>
<script>
// hide state/city rows if country not selected
function setup_fields()
{
if ($('#country_id').val() == '')
{
$('#tr_city_id').hide();
$('#tr_state_id').hide();
}
$('#country_id').change(function(){
if ($('#country_id').val() == '')
{
$('#tr_city_id').hide();
$('#tr_state_id').hide();
}
else
{
$('#tr_city_id').show();
$('#tr_state_id').show();
}
});
}
// add refresh and add link with field
function add_dropdown_action(formid)
{
var str = '';
//str += "<a href='../editing/index.php?form=add' class='fancybox' data-fancybox-type='iframe' style='outline:none;'><span style='padding:0 5px; color: blue; display:inline; padding: 0 7px; margin:0 0 0 5px; top: 2px;' class='ui-icon ui-icon-plus'></span></a>";
str += "<a href='javascript:void(0)' style='outline:none;' onclick='fx_reload_dropdown(\"city_id\",\"state_id\");'><span style='padding:0 5px; color: green; display:inline; padding: 0 7px; margin:0 0 0 5px; top: 2px;' class='ui-icon ui-icon-refresh'></span></a>";
jQuery("#city_id").after(str);
// jQuery('.fancybox').fancybox({
// width: '450',
// height: '700',
// afterClose : function() { fx_reload_dropdown("city_id","state_id"); }
// });
}
</script>
<style>
/* multiselect filter style for appearance */
.ui-multiselect-menu .ui-state-hover {
font-weight: normal !important;
}
.ui-multiselect-header {
font-weight: normal !important;
}
.ui-multiselect-header li.ui-multiselect-close {
margin: 3px;
}
</style>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment