Announcement

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

    Graphical issue - "White" components

    I set up a gwt project as usual, with maven gwt plugin. All works fine but...
    Look at my listGrid and my Ibuttons... they don't look good, do them?
    Is this a css problem? How can I do?
    This is my module conf:
    Code:
    <!DOCTYPE module PUBLIC "//gwt-module/" "http://google-web-toolkit.googlecode.com/svn/tags/1.6.2/distro-source/core/src/gwt-module.dtd">
    <module>
    
    	<!-- Inherit the core Web Toolkit stuff.                        -->
    	<inherits name='com.google.gwt.user.User' />
    
    	<inherits name="com.smartgwt.SmartGwt" />
    
    	<!--  inherit css based theme -->
    	<inherits name='com.google.gwt.user.theme.standard.Standard' />
    
    	<inherits name='org.restlet.GWT'/>
    
    	<!-- Specify the app entry point class.                         -->
    	<entry-point class='it.celi.client.Application' />
    
    	<!-- Specify the application specific style sheet.              -->
    	<stylesheet src='Application.css' />
    
    </module>
    And this is my hosted page:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <!-- The HTML 4.01 Transitional DOCTYPE declaration-->
    <!-- above set at the top of the file will set     -->
    <!-- the browser's rendering engine into           -->
    <!-- "Quirks Mode". Replacing this declaration     -->
    <!-- with a "Standards Mode" doctype is supported, -->
    <!-- but may lead to some differences in layout.   -->
    
    <html>
      <head>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <title>CLOE</title>
    	<script>
      		var isomorphicDir = "it.celi.Application/sc";
    	</script>
        <script type="text/javascript" language="javascript" src="it.celi.Application.nocache.js"></script>
      </head>
    
      <body>
        <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
    	
    	<div id="functions" style="padding: 10px 10px;"></div>
      </body>
    </html>
    I know, it's Christmas time, but I don't want my gwt components to be covered by snow ;-))
    Attached Files
Working...
X