Hi All, 

I use tinyMCE and AjaxTabbedPanel to display texteareas in tabs, but I have some problems with value bindings in java setter method.
The setter method is never called on submit button. Whats wrong with tinyMCE? When I disable tinyMCE, the setter method is allways called when I click on each tabs.
When I enable tinyMCE in tabs, nothing happens.

Thanks for your reply

Html :
...
<!-- TinyMCE -->
    <wo name = "tinyMCE" />
    <wo name = "tinyMCEInit" />
    <!-- /TinyMCE -->
<webobject name = "Tabs">
  <webobject name = "ProblematiqueTab"><wo:text name = "problematik" value = "$problematik" id = "problematik" rows = "30" cols = "120" _onKeyDown_ = "limitText(declaration.problematik,4000);" _onKeyUp_ = "limitText(declaration.problematik,4000);" /></webobject>
</webobject>
...
 
in WOD

in WOD :
...
tinyMCE : ERXJavaScript {
    id="tinyMCE";
    filename = "tiny_mce/tiny_mce.js";
}

tinyMCEInit : ERXJavaScript {
    id="tinyMCEInit";
    filename = "tiny_mce/tinyMCEInit.js";
}

Tabs : AjaxTabbedPanel {
    id = tabsId;
}
 
ProblematiqueTab : AjaxTabbedPanelTab {
    name = "Problematique";
    isSelected = problematiqueTabSelected;
    id = tabProblematiqueId;
          _onLoad_ = "tinyMCE.execCommand('mceAddControl',false,'problematik');";
}
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to