We have been using SmartGWT. Previously we were on 5.0-p20160419
Recently we update to 6.0-p20161007 and then we had this problem.
We found that many *.gif icons are now missing. For example, this one:
In the jar file (smartgwt-skins-6.0-p20161007.jar), what we found is the *.png version of that image
We have read the other post about a similar problem (http://forums.smartclient.com/forum/...=1476992996004)
The suggestion was to avoid loading two skins, but I think we are not doing that.
Our gwt.xml inherits the following modules:
After reading the aforementioned link, we tried inheriting the modules differently, such as this combination, to no avail:
However, if we switched to another theme "BlackOps", then there were no gif/png confusion (the java script is loading TransferIcons/right_Over.png and the file is there in the jar file)
So it seems to me that the problem is not due to conflicting skins, but that the files are really missing.
Our versions:
Client Version: v11.0p_2016-10-07/PowerEdition Deployment (built 2016-10-07)
Recently we update to 6.0-p20161007 and then we had this problem.
We found that many *.gif icons are now missing. For example, this one:
Code:
sc/skins/Simplicity/images/TransferIcons/right_Over.gif
Code:
com/smartclient/theme/simplicity/public/sc/skins/Simplicity/images/TransferIcons/right_Over.png
The suggestion was to avoid loading two skins, but I think we are not doing that.
Our gwt.xml inherits the following modules:
Code:
<inherits name="com.smartgwt.SmartGwtNoTheme"/> <inherits name="com.smartgwt.tools.SmartGwtTools"/> <inherits name="com.smartgwtpower.tools.Tools"/> <inherits name="com.smartclient.theme.simplicity.SimplicityResources"/>
Code:
<inherits name="com.smartgwtpower.SmartGwtPowerNoTheme"/> <inherits name="com.smartgwt.tools.SmartGwtToolsNoTheme"/> <inherits name="com.smartclient.theme.simplicity.SimplicityResources"/> <inherits name="com.smartclient.theme.simplicity.Simplicity"/>
Code:
<inherits name="com.smartgwtpower.SmartGwtPowerNoTheme"/> <inherits name="com.smartgwt.tools.SmartGwtToolsNoTheme"/> <inherits name="com.smartclient.theme.blackops.BlackOpsResources"/> <inherits name="com.smartclient.theme.blackops.BlackOps"/>
Our versions:
Client Version: v11.0p_2016-10-07/PowerEdition Deployment (built 2016-10-07)
Comment