tags:

views:

208

answers:

2

When running my gwt program in GWT Development Mode it fails to display showing this error in the console:

com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.isc.Browser' is null or not an object

I do not believe the error is due to my project setup. Other member of the team can compile fine. It is most likely some type of config problem on my end. I have re-checked out the project and still get the error.

I am using the latest jdk 1.6.0_19 if that matters

A: 

It does not really make sense since your other team members can run the app but to me that sounds like you are using

<inherits name="com.smartgwt.SmartGwtNoScript"/>

in your gwt.xml config and some of the smartgwt js files are not loaded. Try to check for that using firebug (network tab)

dube
A: 

I guess that if you inherit the NoScript module, you need to have an install of smartClient.

<inherits name="com.smartgwt.SmartGwtNoScript"/>

On the other hand, if you have no smartClient install, you need to inherit:

<inherits name="com.smartgwt.SmartGwt"/>
enguerran