A multi level dependent dropdown JQuery plugin that allows nested dependencies. The plugin allows you to convert normal select inputs, whose options are derived based on value selected in another input/or a group of inputs. It works both with normal select options and select with optgroups as well.
NOTE: The latest version of the plugin v1.4.2 has been released. Refer the CHANGE LOG for details.
- Apply the plugin on a select element and set dependency to one or more other input / select elements (including dependency nesting).
- Automatically convert
select
inputs with classdepdrop
to dependent dropdowns. The plugin supports HTML5 data attributes to configure the dependent dropdown options. - Automatically initialize dependent dropdowns based on preselected values (useful for update scenario).
- Supports both
select
input with basicoptions
and select withoptgroups
. - Automatically lock/disable the dependent dropdown until dependent results are available.
- The plugin uses ajax call to the server to render the list of dependent options.
- Allows a loading indicator to be displayed in dependent select until the results are fetched from the server.
- Configure your own loading progress text to be displayed for each dependent dropdown before the results are fetched from the server.
- Display a placeholder label with an empty value. For
optgroups
automatically disable this option. - Triggers JQuery events for advanced development. Events currently available are
depdrop.init
,depdrop.change
,depdrop.beforeChange
,depdrop.afterChange
, anddepdrop.error
. - Size of the entire plugin is less than 4KB (about 3KB for the minified JS and 1KB for the minified CSS).
View the plugin documentation and plugin demos at Krajee JQuery plugins.
-
Latest JQuery
-
All select inputs in markup must have a defined
ID
attribute for the plugin to work. -
Tested to work currently with default HTML select input. It is not tested to work with other JQuery plugins that enhance the HTML select input (e.g. Select2, multiselect etc.). However, the plugin exposes events, which can be used in such situations.
-
The dependent dropdown is generated using an ajax call and hence requires a web server and web programming language to generate this. The plugin passes the dependent id values as an input to the ajax call via POST action. The ajax response should be a JSON encoded specified format like below:
{output: <dependent-list>, selected: <default-selected-value>}
where,
output
is an array of data for the dependent list of the format
{id: <option-value>, name: <option-name>}
selected
is the default selected value after the dependent dropdown is generated.
If you desire a dependent list containing optgroups
then the output
must be of the format
{group-name: {id: <option-value>, name: <option-name>}}
You can use the bower
package manager to install. Run:
bower install dependent-dropdown
You can use the composer
package manager to install. Either run:
$ php composer.phar require kartik-v/dependent-dropdown "@dev"
or add:
"kartik-v/dependent-dropdown": "@dev"
to your composer.json file
You can also manually install the plugin easily to your project. Just download the source ZIP or TAR ball and extract the plugin assets (css and js folders) into your project.
Step 1: Load the following assets in your header.
<link href="path/to/css/dependent-dropdown.min.css" media="all" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="path/to/js/dependent-dropdown.min.js" type="text/javascript"></script>
If you noticed, you need to load the jquery.min.js
in addition to the dependent-dropdown.min.css
and
dependent-dropdown.min.js
for the plugin to work with default settings.
Step 2: Setup your select input markup to. Automatically set dependent dropdowns by adding the class depdrop
and setting data attributes.
NOTE: All select inputs must have a defined ID
attribute for the plugin to work.
<select id="parent-1">
<!-- your select options -->
</select>
<select id="child-1" class="depdrop" depends="['parent-1']" url="/path/to/child_1_list">
<!-- your select options -->
</select>
<select id="child-2" class="depdrop" depends="['parent-1, 'child-1']" url="/path/to/child_2_list">
<!-- your select options -->
</select>
Step 2 (Alternative): You can initialize the plugin via javascript for your dependent dropdowns. For example,
$("#child-1").depdrop({
depends: ['parent-1'],
url: '/path/to/child_1_list'
});
$("#child-2").depdrop({
depends: ['parent-1', 'child-1'],
url: '/path/to/child_2_list'
});
The plugin supports these following options:
array the list of parent input ID
attributes on which the current dropdown is dependent on. DO NOT prepend any hash
before the input id.
array the list of INITIAL nested parent inputID
attributes on which the current dropdown is dependent on. This is applicable only wheninitialize
is set totrue
(for firing the ajax requests on page initialization). Usually you may set it to the topmost parent in the hierarchy while initializing, unless you have complex multiple many to many dependencies. The ajax requests will be fired in sequence based on these dependent ids. DO NOT prepend any hash before the input id. If not set, this will default todepends
. For example you could usedepends
andinitDepends
in the following manner:
$("#child-1").depdrop({
depends: ['parent-1'],
url: '/path/to/child_1_list'
});
$("#child-2").depdrop({
depends: ['child-1'], // dependent only on child-1
url: '/path/to/child_1_list'
});
$("#child-3").depdrop({
depends: ['child-2'], // dependent only on child-2
initDepends: ['parent-1'], // initial ajax loading will be fired first for parent-1, then child-1, and child-2
initialize: true,
url: '/path/to/child_2_list'
});
array the list of additional input ID
attributes, whose values will be parsed and passed to the ajax call. DO NOT
prepend any hash before the input id. When this is setup, the $_POST
request would contain an array named depdrop_params
with the values of these input identifiers. For example in PHP you can retrieve this as:
if (!empty($_POST['depdrop_params'])) {
$params = $_POST['depdrop_params'];
$param1 = $params[0]; // the first parameter value you passed
$param2 = $params[1]; // the second parameter value you passed
// and so on
}
NOTE: In addition to
depdrop_params
, the plugin sendsdepdrop_all_params
as an associative array of keys and values. This is sent merged along with the keys and values ofdepdrop_parents
. Read more about this in theurl
section below.
string the ajax url action which will process the dependent list. The server action must return a JSON encoded
specified format like {output: <dependent-list>, selected: <default-selected-value>}
.
where, the output
is an array of data for the dependent list of the format {id: <option-value>, name: <option-name>}
,
and selected
is the default selected value after the dependent dropdown is generated. If you desire a dependent list
containing optgroups then the output
must be of the format {group-name: {id: <option-value>, name: <option-name>}}
.
The plugin passes an array of dependent values as a POST request to the server under a variable name depdrop_parents
. In addition, the plugin also passes a property depdrop_all_params
that will be an associative array of keys and values (it merges the values of depdrop_parents
and depdrop_params
). The keys are the element identifiers for dependent dropdown parent elements and the element identifiers set via params
property.
This can be read by the server action to generate a dependent dropdown list. An example for a PHP server action could be:
public function generateChildren() {
$out = [];
if (isset($_POST['depdrop_parents'])) {
$parents = $_POST['depdrop_parents'];
if ($id != null) {
$out = getChildList($parents);
/*
* the `getChildList` function can query a db and return array of format
* {id: <val>, name: <desc>}, based on the list of parents passed.
*/
echo json_encode(['output' => $out, 'selected'=>'']);
return;
}
}
if (isset($_POST['depdrop_all_params'])) {
for ($_POST['depdrop_all_params'] as $key => $value) {
// $key = Element ID
// $value = Element Value
}
}
echo json_encode(['output' => '', 'selected'=>'']);
// note when a null or empty array is returned, the plugin will display `emptyMsg`
// in the dependent dropdown
}
NOTE: If you return a null value or an empty array from the server, the plugin will display the
emptyMsg
in the dependent dropdown. The dependent select will always be disabled until the server returns a valid list of values.
boolean This is an important attribute if you want to auto initialize and populate the dropdowns by triggering the ajax calls when
document is loaded. You must set this to true
only for the last child in the nested dependency list, so that initial preselected values are
refreshed sequentially in the nested hierarchy. Defaults to false
. If this property is not true
for any dependent dropdown, no ajax
calls will be triggered on document load (i.e. the dropdowns will show the default data set by the html markup set on init).
boolean whether to show a loading progress spin indicator and the loading text in the child dropdown element when server is
processing the ajax response. Defaults to true
.
string the CSS class to attach to the child dropdown element when the server is processing the ajax response.
Defaults to kv-loading
.
string the text to display in the child dropdown element when the server is processing the ajax response.
Defaults to Loading ...
.
string | boolean whether the child select has a default placeholder. This will create an option with an
empty value within the child select element. For optgroups this will be a disabled option. If you
set this to false
, it will not be displayed. Defaults to Select ...
.
string the message to display when the ajax response returned from the server is null or an empty array. Defaults to
No data found
.
string the name of the parameter that returns the id
value for each list option item via json response. Defaults to id
.
string the name of the parameter that returns the name
value for each list option item via json response. Defaults to name
.
The plugin supports these events:
This event is triggered when the dependent dropdown is initialized.
This event is triggered when the dependent dropdown is initialized with values, after document is loaded and ready.
Example:
$('#input-id').on('depdrop.init', function(event) {
// perform any action
});
This event is triggered when a dependent parent input is modified or changed. This event also allows you to access these parameters:
id
: the parent dependent dropdown element id.value
: the parent dependent dropdown value.count
: the count of options generated in the dependent dropdown.initVal
: the initial preselected value in the dependent dropdown. Defaults tofalse
if not set.
Example:
$('#child-1').on('depdrop.change', function(event, id, value, count) {
console.log(value);
console.log(count);
});
This event is triggered when a dependent parent input is modified or changed and before the ajax response is sent to the server. This event also allows you to access these parameters:
id
: the parent dependent dropdown element id.value
: the parent dependent dropdown value.initVal
: the initial preselected value in the dependent dropdown. Defaults tofalse
if not set.
Example:
$('#child-1').on('depdrop.beforeChange', function(event, id, value) {
console.log(value);
});
This event is triggered when a dependent parent input is modified or changed and after the ajax response is processed by the server. This event also allows you to access these parameters:
id
: the parent dependent dropdown element id.value
: the parent dependent dropdown value.initVal
: the initial preselected value in the dependent dropdown. Defaults tofalse
if not set.
Example:
$('#child-1').on('depdrop.afterChange', function(event, id, value) {
console.log(value);
});
This event is triggered when a dependent parent input is modified or changed and if an error is faced in the ajax response processed by the server. This event also allows you to access these parameters:
id
: the parent dependent dropdown element id.value
: the parent dependent dropdown value.initVal
: the initial preselected value in the dependent dropdown. Defaults tofalse
if not set.
Example:
$('#child-1').on('depdrop.error', function(event, id, value) {
console.log(value);
});
The plugin supports these methods:
Initialize the dependent dropdown.
$('#input-id').depdrop('init');
dependent-dropdown is released under the BSD 3-Clause License. See the bundled LICENSE.md
for details.