Announcement

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

    Simplicity theme missing images

    Hi,
    Trying to use the Simplicity theme in my Smart-GWT project, I am getting the following warning messages in the console:
    Code:
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_start.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_stretch.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_Selected_start.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_Selected_stretch.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_Over_stretch.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_Over_start.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_Selected_end.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_end.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Tab/top/tab_Over_end.png
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/scroll_top_back.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/scroll_top_forward.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/picker_top.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/scroll_Down_top_forward.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/scroll_top_forward.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/scroll_Down_top_back.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/scroll_top_back.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/picker_Down_top.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/TabSet/picker_top.gif
    [WARN] No file found for: /MyProject/sc/skins/Simplicity/images/Menu/check.png
    Looking inside the smartgwt-skins.jar I can see that there is no Tab folder at all, under the images path, and all the other mentioned images are indeed missing.

    Any suggestions?

    (Smart-GWT v. 2.4)

    #2
    Same problem here! I have tried to use Simplicity theme but it seems that many images are missing.

    Comment


      #3
      The Simplicity theme displays fine in the showcase. Are you sure you are not inheriting multiple skins? Please post your entire module xml file and host html file.

      Comment


        #4
        In the QuickStart Guide "Extending" chapter, you'll find correct instructions to switch skins.

        Comment


          #5
          Thanks, It works now! I have changed
          Code:
          <inherits name="com.smartgwt.SmartGwt" />
          to
          Code:
          <inherits name="com.smartgwt.SmartGwtNoTheme" />
          I didn't have problems with other skins so I have missed this part in the guide.

          Comment

          Working...
          X