Announcement

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

    Detected loading of more than one skin in SGWT 5

    Hello there,

    I upgraded my smartgwt from version 3 to version 5(SmartClient Version: v10.0p_2015-01-23/PowerEdition Deployment (built 2015-01-23)).
    and this is my module file but for some reason I get this warning in my Developer Console
    Code:
     
    WARN:Log:Detected loading of more than one skin - 'Enterprise' was loaded when 'EnterpriseBlue' was already loaded.
    Can somebody please help me to resolve this isssue .

    Code:
     
    	<inherits name="net.sf.gilead.Gilead4Gwt" />
    	<inherits name='com.google.gwt.user.User' />
    	<inherits name="com.google.gwt.place.Place" />
    	<inherits name="com.google.gwt.activity.Activity" />
    
    	<!-- SmartGWT -->
    	<inherits name="com.smartgwtee.SmartGwtEENoTheme" />
    	<inherits name="com.smartgwt.Charts" />
    	<inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlue" />
    	<inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources" />
    
    	<inherits name="com.google.gwt.i18n.I18N" />
    	<inherits name="com.google.gwt.i18n.CldrLocales" />
    	<!-- smartgwtpower -->
    	<!-- <inherits name="com.smartgwtee.SmartGwtEE" /> -->
    	<inherits name="com.smartgwtee.SmartGwtEENoScript" />
    	<inherits name="com.smartgwtpower.tools.Tools" />
    	<inherits name="com.sahandrc.calendar.GWTPersianCalendar" />
    
    	<!-- Event Service -->
    	<inherits name="de.novanic.eventservice.GWTEventService" />
    
    	<!-- Other module inherits -->
    	<extend-property name="locale" values="fa" />
    
    	<!-- Specify the app entry point class. -->
    	<entry-point class='com.kaizen.erp.client.Kaierpweb' />
    	<replace-with class="com.kaizen.erp.client.ClientFactoryImpl">
    		<when-type-is class="com.kaizen.erp.client.ClientFactory" />
    	</replace-with>
    
    	<!-- Specify the paths for translatable code -->
    	<source path='client' />
    	<source path='shared' />
    </module>

    #2
    Take a look at the QuickStart Guide for the correct way of switching skins.

    Comment

    Working...
    X