atulmore777 / gwt-html-editor

Automatically exported from code.google.com/p/gwt-html-editor
0 stars 0 forks source link

Compatibility issues with GWT-GWM #8

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Setup GWT with the GWM extension (http://www.gwtwindowmanager.org/)
2. Create a new GInternalFrame...
FramesManager framesManager = new framesManagerFactory().createFramesManager();
GInternalFrame gInternalFrame = framesManager.newFrame();
3. Create a new Editor...
Editor editor = new Editor();
editor.setHTML("<h1>Hello World!</h1>");
4. Show the frame and make the editor its content           
gInternalFrame.show(true);
gInternalFrame.setContent(editor);
5. Load the editor
editor.load();
6. Resize the frame
gInternalFrame.updateWidth();
gInternalFrame.updateHeight();

What is the expected output? What do you see instead?
Expecting to be able to edit the text in the WYSIWYG editor. Also nothing
happens when I click the text color buttons.
I am not able to type new text or change the old text. I can however make
things bold, italic, or go into HTML mode.

What version of the product are you using? On what operating system?
GWT 1.2.22
GWM 0.1
gwt-html-editor 0.1.1
Windows XP
Hosted Mode

Please provide any additional information below.
Typing in WYSIWYG mode seems to work fine in Firefox and IE when compiled,
however the text color buttons still do nothing.

Other than these problems I love the Widget!

Original issue reported on code.google.com by shankin...@gmail.com on 26 Dec 2006 at 5:51

GoogleCodeExporter commented 9 years ago

Original comment by pave...@gmail.com on 2 Jan 2007 at 4:40