1

I used maven dependency to get GQuery lib:

<dependency>
    <groupId>com.googlecode.gwtquery</groupId>
    <artifactId>gwtquery</artifactId>
    <version>1.4.2</version>
</dependency>

Added inheritance to project.gwt.xml file, namely:

<inherits name='com.google.gwt.query.Query'/>

Super Dev Mode config in project.gwt.xml looks like:

<add-linker name="xsiframe"/>
<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>

And after running Codeserver I try to turn Dev Mode on and get the following message:

enter image description here

If I remove GQuery from project, Super Dev mode starts to work again.

Is it possible to launch GWT Super Dev mode with GQuery?

Manolo Carrasco Moñino
  • 9,723
  • 1
  • 22
  • 27
Dragon
  • 2,431
  • 11
  • 42
  • 68

1 Answers1

3

It seems like something is wrong in your project.

GQuery works fine with DevMode and SuperDevMode, it seems like a configuration issue in your gwt.xml

Check that the GQuery inherits line is before the add-linker line. If it's ok, can you share a small project having this issue?

Manolo Carrasco Moñino
  • 9,723
  • 1
  • 22
  • 27
  • You are right. Super Dev mode was followed by GQuery. I've put GQuery before add-linker and everything started to work. Thank you a lot :) – Dragon Jul 14 '14 at 14:50