Hi! When I place jqxComboBox control inside jqxWindow it leads to occurring a lot of errors during the runtime (see Firebug / IE debugger).
My example 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 () { $('#form').jqxWindow({ height: 400, width: 400, title: '', resizable: true, initContent: function(){ var combobox = $('<div>'); combobox.jqxComboBox({ height: 20 }); $('#form').find('.jqx-window-content').append(combobox); } }) }); </script> </head> <body> <div id="form"><div></div></div> </body></html>