setString destroys tab in tabbed pane
Brought to you by:
bajzat
if the textarea is placed directl into tab, like
<tab>
<textarea...>
</tab>
then the call setString(textarea, "text", "some text");
destroys this tab.
if i place the textarea in one panel first, then all works:
<tab>
<panel>
<textarea.../>
</panel>
</tab>