Hello,
why is not possible to reload a window after closing it.
When the window open it start a load Content from a page in html. But after closing the window the opening of the windows do not work as the first time it works.
Query("#popup_create_user").jqxWindow({"width":"95%","height":"90%","isModal":"true","resizable":false,"maxHeight":"95%","maxWidth":"60%","theme":"metro","position":"center","closeButtonAction":"close"}); console.log(3); jQuery("#popup_create_user").jqxWindow("setContent", "Loading..."); console.log(4); (function(){ jQuery.ajax({ dataType: 'html', url: "/users/add", success: function (data) { console.log("success"); jQuery("#popup_create_user").jqxWindow('setContent', data);}, error: function () { console.log("error"); jQuery("#popup_create_user").jqxWindow('setContent', "Error");} }); jQuery("#popup_create_user").jqxWindow("open"); jQuery("#popup_create_user").jqxWindow("show"); })();
Thanks