GWT theme style overrides my css style

This post on the GWT mailing list describes an alternative solution. You have to create a new ClientBundle which references your CSS file: import com.google.gwt.core.client.GWT; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.CssResource; public interface Resources extends ClientBundle { public static final Resources INSTANCE = GWT.create(Resources.class); @Source(“style.css”) @CssResource.NotStrict CssResource css(); } And then inside your onModuleLoad() method you have … Read more

How do I speed up the gwt compiler?

Let’s start with the uncomfortable truth: GWT compiler performance is really lousy. You can use some hacks here and there, but you’re not going to get significantly better performance. A nice performance hack you can do is to compile for only specific browsers, by inserting the following line in your gwt.xml: <define-property name=”user.agent” values=”ie6,gecko,gecko1_8″></define-property> or … Read more