资 源 简 介
**Last Update: 17.03.2010 - Rev: 1.2**
Next Release: Sept 2010 - see Issue Tracker for Enhancements
This standalone RichTextToolbar Widget can switch between WYSIWYG-view and HTML-View
It makes use of the standard GWT RichTextArea an is handled as an own widget. It refers to an ToolBar imagemap, that can (and should!) be changed easily, by changing the URL to the map.
The Toolbar can be easily changed in layout and functionality and can be adapted to your needs: You can expand, rearrange or edit it in any way. The code is with lots of comments, so that you will find it easy to understand what is done in every part of the software.
Example to use the ToolBar Widget:
```
final RichTextArea textArea = new RichTextArea();
final RichTextToolbar toolBar = new RichTextToolbar(textArea);
VerticalPanel vp = new VerticalPanel();
textArea.setWidth("100%");
v