vladsch
24 Jun 2010, 1:33 AM
Hi,
In the ExtJS 3.3.0 the emptyIcon was moved from constructor to the config object
Ext.tree.TreeNodeUI = Ext.extend(Object, {
emptyIcon: Ext.BLANK_IMAGE_URL,
...
It causes request to the BLANK_IMAGE_URL immediately after ext-all.js loading (we have no chance to override that url in own script because the request is performed early then our script execution). It brings undesired warning message under IE if work under https protocol (IE Security Warning "Do you want to view only the webpage content that was delivered securely?")
I think that emptyIcon initialization should be moved to the constructor
Thanks
In the ExtJS 3.3.0 the emptyIcon was moved from constructor to the config object
Ext.tree.TreeNodeUI = Ext.extend(Object, {
emptyIcon: Ext.BLANK_IMAGE_URL,
...
It causes request to the BLANK_IMAGE_URL immediately after ext-all.js loading (we have no chance to override that url in own script because the request is performed early then our script execution). It brings undesired warning message under IE if work under https protocol (IE Security Warning "Do you want to view only the webpage content that was delivered securely?")
I think that emptyIcon initialization should be moved to the constructor
Thanks