You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Gwt Window Manager
I have a simple code like this
public class gwmt implements EntryPoint {
/**
* This is the entry point method.
*/
public void onModuleLoad() {
GFrame window = new DefaultGFrame("Simple window with
widget");
window.setWidth(380);
window.setHeight(440);
window.setLocation(65, 10);
window.setContent(new Label("My Label"));
window.setVisible(true);
}
}
when running I get
.....
java.lang.AssertionError: The style name '-mozOpacity' should be in
camelCase format
at com.google.gwt.dom.client.Style$.assertCamelCase$(Style.java:63)
at com.google.gwt.dom.client.Style$.setProperty$(Style.java:42)
at com.google.gwt.user.client.DOM.setStyleAttribute(DOM.java:1208)
at org.gwm.client.impl.OutlinePanel.initUI(OutlinePanel.java:33)
at org.gwm.client.impl.OutlinePanel.<init>(OutlinePanel.java:25)
Any help please ?
Thanks
Luciano Broussal
unread,
Jun 19, 2009, 8:20:52 AM6/19/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Gwt Window Manager
Hi,
you are not newbie. this an error.
GWM is not working with GWT-1.6 currently except on my box :(
if you want make it work on GWT 1.6 get gwm source and remove the line
33 into class OutlinePanel.