Amigos, essa é pra quem conhece o GWT-EXT…
estou começando com esse framework, mas já estou tocando um projeto com ele.
inclui a herança do GWT-EXT no .gwt.xml…
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<inherits name='com.gwtext.GwtExt'/>
Porem, quando executo…
[ERROR] Unable to find 'com/gwtext/GwtExt.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
Inclui o gwtext.jar no meu $PROJECT_HOME e incluir no classpatch, mas ainda assim a execução do projeto nao encontra o jar!!!
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
<classpathentry kind="lib" path="gwt-user.jar"/>
<classpathentry kind="lib" path="gwtext.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Me ajudem amigos!!!

