Announcement

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

    how to change skin

    I have upgrade smartgwt with the latest version as 12.1-p20200813 and previously I was using enterprise skin in my project but after the smart gwt upgrade, it has added new skin i.e Tahoe in my project which I don't want to use.

    so please help me how can I remove tahoe skin from my project so that I can use Enterprise skin.



    Below is file for Uman.gwt.xml

    <module rename-to='Uman'>

    <!-- Inherit the core Web Toolkit stuff. -->
    <inherits name='com.google.gwt.user.User' />

    <!-- internationalization support -->
    <inherits name="com.google.gwt.i18n.I18N" />

    <!-- google gin -->
    <inherits name="com.google.gwt.inject.Inject" />

    <!-- Do not promote to PRD. Enables the developer console
    <inherits name="com.smartgwt.tools.SmartGwtTools" />
    <inherits name="com.smartgwtee.tools.Tools"/>
    <inherits name="com.smartgwtee.debug.SmartGwtEEDebug"/>
    -->

    <!-- inherit the SmartGwt stuff -->
    <inherits name="com.smartgwtee.SmartGwtEE"/>

    <inherits name="com.snapon.sbs.am.server.gwt.common.Common"/>
    <inherits name="com.snapon.sbs.am.server.ui.UmanCommon"/>

    <!-- Specify the app entry point class. -->
    <entry-point class='com.snapon.sbs.am.server.ui.sbs.client.SbsEntityManager'/>

    <inherits name="com.smartclient.theme.enterprise.Enterprise"/>


    #2
    Enterprise was the default skin if you did not choose a skin, and then the default skin was changed to Tahoe.

    Please see the QuickStart Guide for details on how to choose a skin explicitly.

    You may want to try out the “Stratus” skin as a possibly replacement for Enterprise; it has a similar color scheme but is more minimalist and slightly more efficient.

    Comment


      #3
      Is there anything that needs to change in the below code for using enterprise skin only not tahoe:-

      Below is file for Uman.gwt.xml

      <module rename-to='Uman'>

      <!-- Inherit the core Web Toolkit stuff. -->
      <inherits name='com.google.gwt.user.User' />

      <!-- internationalization support -->
      <inherits name="com.google.gwt.i18n.I18N" />

      <!-- google gin -->
      <inherits name="com.google.gwt.inject.Inject" />

      <!-- Do not promote to PRD. Enables the developer console
      <inherits name="com.smartgwt.tools.SmartGwtTools" />
      <inherits name="com.smartgwtee.tools.Tools"/>
      <inherits name="com.smartgwtee.debug.SmartGwtEEDebug"/>
      -->

      <!-- inherit the SmartGwt stuff -->
      <inherits name="com.smartgwtee.SmartGwtEE"/>

      <inherits name="com.snapon.sbs.am.server.gwt.common.Common"/>
      <inherits name="com.snapon.sbs.am.server.ui.UmanCommon"/>

      <!-- Specify the app entry point class. -->
      <entry-point class='com.snapon.sbs.am.server.ui.sbs.client.SbsEntityManager'/>

      <inherits name="com.smartclient.theme.enterprise.Enterprise"/>

      Comment


        #4
        Yes, as we covered in our previous reply, you need to follow the QuickStart Guide’s instructions for using a non-default skin: inherit the “NoTheme” variant and the inherit the skin you want.

        By the way, we would also recommend that you do deploy the tools module, but protect it so only authorized people can access it. This gives you access to a lot of valuable debugging facilities.

        Comment

        Working...
        X