Hi! When I try to open two or more ComboBoxes the previously opened ComboBoxes stay expanded. How to make them automatically closable?
The sample is here:
<!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8" /> <title> </title> <link rel="stylesheet" href="styles/jqx.base.css"/> <script type="text/javascript" src="scripts/jquery-1.10.2.min.js"> </script> <script type="text/javascript" src="scripts/jqx-all.js"> </script> <script type="text/javascript"> $(document).ready(function () { $('#c1').jqxComboBox({ height: 20 }); $('#c2').jqxComboBox({ height: 20 }); }); </script> </head> <body> <div id="c1"></div> <div id="c2" style="margin-top: 10px;"></div> </body></html>