Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: HowTo : implement Textarea with wrapping text

Re: HowTo : implement Textarea with wrapping text

From: <bonanos_at_yahoo.com>
Date: Wed, 16 Sep 1998 06:08:30 GMT
Message-ID: <6tnkkt$cq$1@nnrp1.dejanews.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US