The aforementioned test case should suffice as long as you use a high resolution monitor. I cannot duplicate the issue on my 24" @ 1680x1050, but I can easily cause it on my 27" @ 1920x1200
Announcement
Collapse
No announcement yet.
X
-
One thing we'd like to clear up, slightly unrelated to the actual behavioral problems you've seen: You're seeing warnings about "mixed resources" on startup. These are very likely harmless and indicate that our logic for detecting mixed resources is being over-zealous in this case, but we'd like to confirm this.
Can you confirm the following so we can verify there's no config issue on our end and double check our detection logic:
- the exact build you downloaded
- which libraries (.jars) you added to your java build path
- what your .gwt.xml file looks like (basically the includes)
Thanks
Isomorphic Software
Comment
-
I do use this tool to mavenize your power edition http://forums.smartclient.com/showthread.php?t=24921
I use it for both 3.0 which is what our project is current riding, 3.1 for a branch where I am trying to determine if we can successfully upgrade to (this is what you are seeing me use), and 4.0 for a prototype of our next iteration. The 3.1 build is the only one that produces this output.
Code:<?xml version="1.0" encoding="UTF-8"?> <module rename-to='gsui'> <inherits name='com.google.gwt.junit.JUnit'/> <inherits name='com.google.gwt.user.User'/> <inherits name='com.google.gwt.logging.Logging'/> <inherits name="com.smartgwtpower.SmartGwtPowerNoTheme"/> <inherits name="com.smartclient.theme.enterprise.EnterpriseResources"/> <!--<inherits name="com.smartclient.theme.fleet.Fleet"/>--> <inherits name="com.smartgwtpower.tools.Tools"/> <inherits name="com.smartgwt.RealtimeMessaging"/> <inherits name="com.smartgwt.Drawing"/> <inherits name="com.smartgwt.Analytics"/> <inherits name="com.smartgwt.Charts"/> <inherits name="com.nitrous.gwt.earth.GwtEarthAPI"/> <inherits name="com.google.gwt.json.JSON"/> <inherits name="com.google.gwt.i18n.I18N"/> <inherits name="com.google.gwt.maps.Apis_Google_Maps"/> <!-- Specify the app entry point class. --> <entry-point class='com.sncorp.gs2.ui.client.GSUIEntryPoint'/> <!-- Specify the paths for translatable code --> <source path='client'/> <source path='shared'> <exclude name='**/*ObjectFactory.java'/> </source> <set-property name="gwt.logging.logLevel" value="INFO" /> <set-property name="gwt.logging.enabled" value="TRUE" /> <set-property name="gwt.logging.developmentModeHandler" value="ENABLED" /> <set-property name="gwt.logging.systemHandler" value="DISABLED" /> <set-property name="gwt.logging.popupHandler" value="DISABLED" /> <set-property name="gwt.logging.consoleHandler" value="ENABLED"/> <set-property name="gwt.logging.firebugHandler" value="ENABLED" /> <set-property name="gwt.logging.simpleRemoteHandler" value="ENABLED" /> <set-property name="compiler.stackMode" value="emulated" /> <set-configuration-property name="compiler.emulatedStack.recordLineNumbers" value="true"/> <set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true"/> </module>
Code:<dependency> <groupId>com.isomorphic.smartgwt</groupId> <artifactId>smartgwt-power</artifactId> <version>${smartgwt.version}</version> <exclusions> <exclusion> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> </exclusion> </exclusions> </dependency> <!--<dependency>--> <!--<groupId>com.isomorphic</groupId>--> <!--<artifactId>smartgwt-skins</artifactId>--> <!--<version>${smartgwt.version}</version>--> <!--</dependency>--> <dependency> <groupId>com.isomorphic.smartgwt</groupId> <artifactId>isomorphic-network</artifactId> <version>${smartgwt.version}</version> <type>pom</type> </dependency> <dependency> <groupId>com.isomorphic.smartgwt</groupId> <artifactId>isomorphic-messaging</artifactId> <version>${smartgwt.version}</version> </dependency> <dependency> <groupId>com.isomorphic.smartgwt</groupId> <artifactId>isomorphic-jpa</artifactId> <version>${smartgwt.version}</version> <exclusions> <exclusion> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.isomorphic.smartgwt</groupId> <artifactId>smartgwt-analytics</artifactId> <version>${smartgwt.version}</version> </dependency> <dependency> <groupId>com.isomorphic.smartgwt</groupId> <artifactId>smartgwt-messaging</artifactId> <version>${smartgwt.version}</version> </dependency>
Comment
Comment