<div>hi</div>
<div> </div>
<div>My last thread was about questioning CmsFCKEditorWidget. In the meantime i found a solution. In the class where i use the widget i overwrite "protected void dialogButtonsHtml(StringBuffer result, int button, String attribute)". So the request param for the hidden field get updated.
</div>
<div> </div>
<div>
<p>    protected void dialogButtonsHtml(StringBuffer result, int button, String attribute) {</p>
<p>        attribute = appendDelimiter(attribute);</p>
<p>        switch (button) {<br>            case BUTTON_OK:<br>                result.append("<input name=\"ok\" value=\"");<br>                result.append(key(org.opencms.workplace.Messages.GUI_DIALOG_BUTTON_OK_0
) + "\"");<br>                if (attribute.toLowerCase().indexOf("onclick") == -1) {</p>
<p><br> // !! Invoking "submitHtml(form)" updates<br><br>                    result.append(" onClick=\"submitHtml('form');\"");</p>
<p><br>                    result.append(" type=\"submit\"");<br>                }<br>                result.append(" class=\"dialogbutton\"");<br>                result.append(attribute);
<br>                result.append(">\n");<br>                break;<br>                <br>            default :<br>                super.dialogButtonsHtml( result, button, attribute);<br>        }<br>    }</p>
</div>