I have a TextArea with long text inside it, I put the TextArea inside ScrollPane as following:
<screen Title="Testing Scroll Pane">
<scrollPane >
<scrollpanecontainer >
<textarea id="TextArea">
<![CDATA[
Paragraph 1:
Hi,
This is a test for TextArea with long text to see how it works with scrollpane.
After this sentence there is anew line.
If it doesn't appear this means there is a problem in rendering new lines
Paragraph 2:
Hi,
This is a test for TextArea with long text to see how it works with scrollpane.
After this sentence there is anew line.
If it doesn't appear this means there is a problem in rendering new lines
Paragraph 3:
Hi,
This is a test for TextArea with long text to see how it works with scrollpane.
After this sentence there is anew line.
If it doesn't appear this means there is a problem in rendering new lines
]]>
</textarea>
</scrollpanecontainer>
</scrollPane>
<screenSecondMenu onAction="back">back</screenSecondMenu>
</screen>
The result is in the following snapshot:

I found these two bugs:
1- I cannot scroll down or up although the scroll bar appears correctly (see snapshot).
2- New lines in TextArea are omitted and not rendered.

