Hi all,
When I use the readonly option of a textarea, no line breaks will be displayed.
So when it looks in normal mode like this:
- line1
- line2
- line3
in readonly mode it will be displayed this way:
- line1- line2- line3
After searching the forum I found some tipps to use the replace function, so I changed my source to
SELECT REPLACE(MY_TEXT,CHR(10),'<br />') FROM MY_TABLE WHERE ID = :P1_ID
Now the textarea looks like this in readonly mode
- line1<br />- line2<br />- line3
So the replace is done, but it's not displayed correctly ...
Any ideas what's wrong or any tipps how to show line breaks?
Thanks
chrissy