I am using quite a few Ext 2.0.2 components to construct a fairly complex UI. I have several panels, grid panels, and toolbars. Our application is running over HTTPS. During IE6 testing we discovered that we are reliably producing a warning about insecure items in one circumstance. Testing with Firefox shows no content was being retrieved over HTTP.
There's quite a bit of code involved and I'm not sure what code to show. The warning dialog occurs right before a panel is expanded, where we're listening on that event and handling it by then loading a JSON store. The URL of the JSON store, though, is a relative URL, so it should be retrieved over HTTPS. Strangely enough, even if I choose not to load the insecure content, all the content loads and renders from the JSON store. So, I'm not even sure what it's complaining about.
I've done quite a bit of searching around the forums for a solution, and there doesn't seem to be one for this. I've set both Ext.BLANK_IMAGE_URL to a local spacer gif and Ext.SSL_SECURE_URL to a blank file and then to true, but this hasn't fixed the problem.
Any suggestions? Thanks in advance.