Announcement

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

    Custom Skinning issue : Enterprise hinders custome skin

    Hi

    I am having problems loading my custom skin for some of the components.

    I followed the tutorial i.e copy Simplicity, rename the skin in the js file etc.

    My new skin gets loaded but for some components, the skin is loaded from Enterprise. How can I totally remove Enterprise skin?
    My HTML is
    Code:
    <html>
      <head>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <title>Userfacts Customer Web</title>
         <script>var isomorphicDir = "sc/"; </script>
         <script type="text/javascript" language="javascript" src="com.userfacts.customerweb.CustomerWeb/sc/skins/CustomerWebSkin/load_skin.js?isc_version=7.1.js"></script>
       </head>
      <body>
      <div id="baseContainer">
    	<center>
      		<div id="mainContainer">
      		</div>
        </center>
      </div>
    
        <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
        <script type="text/javascript" language="javascript" src="com.userfacts.customerweb.CustomerWeb.nocache.js"></script>
      </body>
    </html>
    My XML FILE IS

    Code:
    <module>
    
          
          <!-- Specify the app entry point class.                         -->
          <entry-point class='com.userfacts.customerweb.client.CustomerWeb'/>
    	  
      	  <!-- Specify the application specific style sheet.              -->
          <!-- Theme -->
          <inherits name="com.smartgwt.SmartGwtNoTheme"/>
          <inherits name="com.userfacts.theme.customerwebskin.CustomerWebSkin"/>
          <stylesheet src='CustomerWeb.css' />
    </module>
Working...
X