Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: HowTo : implement Textarea with wrapping text
Hi
> htp.formTextareaOpen('text_name',',5,'32',NULL,'VIRTUAL',NULL);
>
> According to my HTML-book, the WRAP parameter can take these values:
> OFF : no wrapping (standard)
> VIRTUAL : wrapping, data is still sequentially sent to the server
> PHYSICAL : wrapping, data is cut up in pieces all of the same length
Here is a working example, I don't use the Oracle function but rather the html:
htp.p('<textarea name="c_article" rows=10 cols=75 wrap="virtual">'); htp.p(e_article); htp.p('</textarea>');
Whenever I have trouble with html I always look at the source of a site that has done what I am trying to do the I use htp.p(''); to print the html instead of having to worry about wether I have all the parameters etc.
-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/rg_mkgrp.xp Create Your Own Free Member Forum Received on Wed Sep 16 1998 - 01:08:30 CDT
![]() |
![]() |