Hi,
I have one textfiled under table layout about 60% of the screen and a textarea about 30% of the screen. As i type in the textfield it scrolls horizontaly over the screen but i want to see it as vertically as i keep putting user input. Moreover whatever is writen in the textfield i'm showing it in textarea with different font color. I want to show all these as vertically scrollabe in the screen. Please help me how to show it.
below is my code:
<screen title="Layout!!">
<container style="layout:borderlayout">
<container style="layout:tablelayout">
<container id="10percent" style="span: 2 1; weight: 1 .10;border:1;border-color:blue">
To:
<textfield maxsize="14" style="align:fill-left;">
</textfield>
</container>
<break/>
<textfield id="message" onfocus="setColor" style="span: 2 1; weight: 1 .60;border:1;border-color:green;bg-color:#408080">
Write Message here..
</textfield>
<break/>
<textarea id="preview" style="span: 2 1; weight: 1 .30;border:1;border-color:red">30%
</textarea>
</container>
</container>
<screenfirstmenu>Send</screenfirstmenu>
<screensecondmenu>Insert
<menuPopup>
<menuItem onAction="setColor">
Color
</menuItem>
<menuItem onAction="setEmoticons">
Emoticons
</menuItem>
</menuPopup>
</screensecondmenu>
</screen>



