Hi All,
When hosting my site under SSL https ext.net works fine but when I try to load a nonsecure site to the below ext window a get a browser warning about the site being non secure and I can stop the iframe of the ext window loading or ok it.
Is there a way around this?Code:<ext:Window runat="server" Modal="True" ID="winOnline"> <AutoLoad Mode="IFrame" Url="javascript:''"> </AutoLoad> </ext:Window> var setOnlineWindowUrl = function (url, title) { var winOnline = Ext.getCmp('winOnline'); winOnline.setTitle(title); winOnline.show(); winOnline.load(url);}; <a href=\"#\" onclick="setOnlineWindowUrl('http://foobar.com', 'foo-bar')" \">More...</a>
Regards,
moth1


Reply With Quote