New issue report by aquua77:
sorry I can't write english well..
I use tiny mce editor.
if you can't insert text or not focus you must add below source code.
( source code ->
http://code.google.com/p/gwt-html-
editor/source/browse/branches/gwt1.4/src/com/gc/gwt/wysiwyg/client/tinymce/
TinyMCE.java?r=90
)
public void unload() {
unloadMCE(editorId);
}
/**
* unloadMCE() -
*
* @param id - The element's ID
* JSNI method to implement unloading the MCE editor instance
from memory
*/
protected native void unloadMCE(String id) /*-{
$wnd.tinyMCE.execCommand('mceRemoveControl', false, id);
}-*/;
how to use.
if close tiny mce editor
you must call unload method...
closeButton.addClickListener(new ClickListener() {
public void onClick(Widget sender) {
tinyMceditor.unload();
closePopup();... etc.
}
Issue attributes:
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 by pavelgj:
Hi,
TinyMCE wrapper was never finished... there were some issues with layout and
listeners. If you'd like to contribute a patch you're more than welcome.
Thanks,
Pavel