Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Requesting *.gif files instead of *.png

    SmartGWT: v5.0p_2015-01-26 LGPL
    GWT: 2.6.1
    Chrome: 34.0.1847.137 (Official Build 268882)
    Skin: Enterprise

    Hello,

    The tab images in the calendar view appear to be missing. The HTML is requesting '/sc/skins/Enterprise/images/Tab/top/*.gif' images but the directory only has *.png files.

    Is anyone else seeing this?

    Regards,
    Harry

    #2
    This is a common symptom of loading two skins at once. See the QuickStart Guide for how to correctly change skins.

    Comment


      #3
      Thank you for the kind direction.

      Previously, I had the following in my GWT module:
      Code:
      <inherits name="com.smartgwt.SmartGwtNoScript" />
      <inherits name="com.smartclient.theme.enterprise.Enterprise" />
      Changing it to this corrected the issue:
      Code:
      <inherits name="com.smartgwt.SmartGwtNoScriptNoTheme" />
      <inherits name="com.smartclient.theme.enterprise.Enterprise" />
      Regards,
      Harry

      Comment

      Working...
      X