Hi, I set up a GWT project on Google app engine using Google eclipse
plugin.
It is just a GWT project and organize the directories in app engine
way. The only change is move directory "public" under /war/module/
When I want to use GWT ext, I cannot set it up with my GWT project.
It keeps saying:
[ERROR] Unable to load module entry point class
com.aabbcc.web.client.Index (see associated exception for details)
com.google.gwt.core.client.JavaScriptException: (TypeError):
number: -2146823281
description:
at com.gwtext.client.widgets.Component.init(Native Method)
at com.gwtext.client.widgets.Component.<clinit>(Component.java:113)
=========================================
I inherit this:
<inherits name="com.gwtext.GwtExt" />
<inherits name="com.google.gwt.i18n.I18N" />
==========================================
This is the entry point:
public void onModuleLoad() {
Panel panel = new Panel();
panel.setId("main_panel");
panel.setTitle("Hello!");
panel.setBorder(false);
panel.setPaddings(15);
panel.setLayout(new HorizontalLayout(15));
panel.add(new Panel("Item 1", 100, 150));
panel.add(new Panel("Item 2", 75, 150));
panel.add(new Panel("Item 3", 100, 150));
panel.add(new Panel("Item 4", 150, 150));
RootPanel.get("navigation").add(panel);
}
========================================
I put js-ext under the js directory.
I add stylesheet or js in the header of html file, there's always the
exception there.
Could some body tell me what's the problem and How i can fix it?
Thank you!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---