Rob - 2011-11-03

Hi,

Its also a good idea to regularly flush your browser's cache.

Also, its not a good idea to include javascript files in your host file.

You should wrap any component dependencies in a module definition file (.gwt.xml) file:

<module>

  <inherits name="org.moxieapps.gwt.highcharts.Highcharts"/>

  <script src="gwtcx/charts/highcharts/javascript/jquery-1.5.2.min.js" />
  <script src="gwtcx/charts/highcharts/javascript/highcharts.js" />

</module>

then include this module in your application's .gwt.xml:

<module rename-to="serendipity">

  <inherits name="com.gwtcx.HighCharts" />
  <inherits name="com.gwtcx.TinyMce" />
  <inherits name="com.gwtcx.SmartGwt" />
  <inherits name='com.gwtcx.FormFactor'/>

  ...

</module>

Cheers
Rob

http://code.google.com/p/gwt-cx/

 

Last edit: Rob 2011-11-13