I have a webproxy which requires user to put username and password to connect to the internet (not for the localhost or intranet sites). When I am testing Ext 1.0, I noticed that every time I made a fresh connection to localhost Ext, it as for the proxy authentication as it is trying to connect to an external site. I found the following line in Ext.js
BLANK_IMAGE_URL : "http:/"+"/www.yui-ext.com/s.gif",
which get image from yui-ext site, I downloaded the image locally and gave the local path there. It is still asking me to verify proxy. Is there anything (images, js files) that Ext fetches from remote site? (It even YUI is local in the new version. Please help.
Here is the image
[/img]
BLANK_IMAGE_URL : "http:/"+"/www.yui-ext.com/s.gif",
which get image from yui-ext site, I downloaded the image locally and gave the local path there. It is still asking me to verify proxy. Is there anything (images, js files) that Ext fetches from remote site? (It even YUI is local in the new version. Please help.
Here is the image

|
#2
|
|
You have to set that up in your environment. e.g.
Ext.BLANK_IMAGE_URL = '/somewhere/with/1x1transparent.gif'; ![]() |
本文探讨了在使用ExtJS框架时遇到的问题,特别是在需要通过Web代理进行互联网连接的情况下。作者发现ExtJS会尝试访问远程站点进行图片获取,即使这些资源已本地化,仍会触发代理认证请求。文中提供了修改ExtJS设置以避免此类问题的方法。

被折叠的 条评论
为什么被折叠?



