GWT RichTextArea ReadOnly Workaround
问题 GWT's RichTextArea doesn't have a method to make it "ReadOnly". There's a setEnabled() method, but if you call setEnabled(false), it doesn't work. I'm trying a workaround for this that should work. My idea is to replace the RichTextArea for this behavior with a HTML widget. The problem is, if I use an HTML widget to set the original RichTextArea's content, it will be affected by all the styling of my web application. The RichTextArea achieves this wrapping the content inside an IFrame. So i'm