jQWidgets jqxSplitter collapsed Event
jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSplitter is used for representing a widget that consists of a moveable split bar(s) that divides the display area of the container into two or more resizable and collapsible panels.
The collapsed event is triggered when a panel of the specified jqxSplitter is collapsed.
Syntax:
$('#jqxSplitter').on('collapsed', function (event) { var panels = event.args.panels; // Get first panel var panel1 = panels[0]; // Get second panel var panel2 = panels[1]; // Panel index var index = event.args.index; });
Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/>
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
Example: The below example illustrates the jQWidgets jqxSplitter collapsed event.
HTML
<!DOCTYPE html> < html lang = "en" > < head > < link rel = "stylesheet" href = "jqwidgets/styles/jqx.base.css" type = "text/css" /> < script type = "text/javascript" src = "scripts/jquery.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxcore.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxbuttons.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxsplitter.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxscrollbar.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxpanel.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqx-all.js" > </ script > </ head > < body > < center > < h1 style = "color:green;" > GeeksforGeeks </ h1 > < h3 > jQWidgets jqxSplitter collapsed Event </ h3 > < div id = 'jqx_Splitter' > < div style = "background-color: #006400" > </ div > < div style = "background-color: #000000" > </ div > </ div > < input type = "button" style = "margin: 28px;" id = "button_for_collapsed" value = "Collapse the above jqxSplitter widget" /> < div id = "log" ></ div > < script type = "text/javascript" > $(document).ready(function () { $("#jqx_Splitter").jqxSplitter({ width: 300, height: 200 }); $("#button_for_collapsed").jqxButton({ width: 300 }); $("#button_for_collapsed").jqxButton(). click(function () { $('#jqx_Splitter').jqxSplitter( 'collapse'); }); $('#jqx_Splitter').on('collapsed', function () { $("#log").html( "Collapsed" ); }); }); </ script > </ center > </ body > </ html > |
Output:
Please Login to comment...