My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Links

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%");
		
		vp.add(toolBar);
		vp.add(textArea);
		
		RootPanel.get().add(vp);

Statistics

Open Bugs0
Fixed Bugs2
Open Enhancements2
Done Enhancements1

Compatibility:

The Toolbar is made for GWT 2.0, but can be downgraded easily to older versions of GWT. If you need a downgraded version, please feel free to contact one of the committers here.

Example project:

You can checkout an working example project from the trunk of our svn-repository.

Usage of the Toolbar:

The toolbar may be used for personal, as well as for commercial use. It may be changed and reused in any project and is licensed under Apache License 2.0.

Anyway it would be great to hear from you, if you use our toolbar :)

Tested Browsers:

Firefox, Safari, Chrome, InternetExplorer

Powered by Google Project Hosting