AceEditor not showing

Hello

I have downloaded the AceEditor addon jar and copied it into eclipse lib folder. The widgetset compilation is successfull and I do not get any error messages in log when using simple example. However only the label is displayed, not the AceEditor. I tried eclipse internal web browser, firefox, explorer with the same result. Resizing the browser window doesnt help.

public void init() {
	Window mainWindow = new Window("Ace Application");
	Label label = new Label("Hello Vaadin user");
	mainWindow.addComponent(label);
	

	AceEditor editor = new AceEditor();
            editor.setValue("var foo = {};\n");
            editor.setMode(AceMode.javascript);
            editor.setSizeFull();
            mainWindow.addComponent(editor);
	
	
	setMainWindow(mainWindow);
}

I get the following html when running the app. So something is created by the AceEditor addon.

Have anyone had this issue?

/Kasper

ok. setSizeFull did not work

however setting size will show the editor

    editor.setWidth("600px");
    editor.setHeight("400px");

Yes, I have the same problem. setSizeFull() does not work!