I am using SmartGWT version v11.1p_2018-02-21/PowerEdition Deployment. I am trying to explore the charting capabilities. I have the following inherits statements in my gwt.xml file
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
<inherits name="com.smartgwtee.SmartGwtEENoScriptNoTheme"/>
<inherits name="com.smartgwtpower.tools.Tools"/>
<inherits name="com.smartgwt.RealtimeMessagingNoScript"/>
<inherits name="com.smartgwt.PluginBridgesWidgets"/>
<inherits name="com.smartgwt.Drawing"/>
<inherits name="com.smartgwt.Charts"/>
I added the last three inherits for charting.
When I run from Eclipse Kepler I get an exception when I try to instantiate a Facet instance. It says "The Charts module must be loaded to use FacetChart. See the LoadingOptionalModules overview in the "docs" package of JavaDoc for instructions."
The JavaDoc instructions were how I knew to inherit PluginBridgesWidgets, Drawing and Charts.
When I build a war and run inside Tomcat it has no problems. I only experience the issue in Eclipse.
Can someone tell me what I'm doing wrong?
Thanks,
Ken
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
<inherits name="com.smartgwtee.SmartGwtEENoScriptNoTheme"/>
<inherits name="com.smartgwtpower.tools.Tools"/>
<inherits name="com.smartgwt.RealtimeMessagingNoScript"/>
<inherits name="com.smartgwt.PluginBridgesWidgets"/>
<inherits name="com.smartgwt.Drawing"/>
<inherits name="com.smartgwt.Charts"/>
I added the last three inherits for charting.
When I run from Eclipse Kepler I get an exception when I try to instantiate a Facet instance. It says "The Charts module must be loaded to use FacetChart. See the LoadingOptionalModules overview in the "docs" package of JavaDoc for instructions."
The JavaDoc instructions were how I knew to inherit PluginBridgesWidgets, Drawing and Charts.
When I build a war and run inside Tomcat it has no problems. I only experience the issue in Eclipse.
Can someone tell me what I'm doing wrong?
Thanks,
Ken
Comment