473,412 Members | 4,957 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,412 software developers and data experts.

textarea wrap

Hi

I have googled but not found a solution to wordwrap in a textarea using
firefox/netscape.

is there a style sheet solution or am i stuck with not being able to force
wrapping in a textarea

Mark

Mar 15 '06 #1
8 52969
VK

Mark D. Smith wrote:
Hi

I have googled but not found a solution to wordwrap in a textarea using
firefox/netscape.

is there a style sheet solution or am i stuck with not being able to force
wrapping in a textarea


Textarea has wrap attribute set to "logical" ("soft" by IE) by default,
so strings will be wrapped after reaching the opposite border, but only
manually typed Enter's will be submitted. So your task is to prevent
wrap, not to enable it ;-)

You can partially emulate wrap="off" by setting textarea style to:
white-space: nowrap;

But overall it is more standard and reliable to set "wrap" attribute:
"physical" - all visual line breaks are submitted as newlines
"logical" - you have visual line breaks but only "hardtyped" breaks are
submitted
"off" - rather clear I guess :-)

P.S. This attribute is missing in W3C DTD's by mistake (one didn't
understand the physical meaning of "wrap" and thought it to be
replaceable by styling). Nevertheless it is supported by all ever
existed browsers.

P.P.S. Modern browsers also support an alternate attribute set from
Microsoft: "soft", "hard", "off". These values have the same meaning
and effect, but the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.

Mar 15 '06 #2
VK wrote:
Textarea has wrap attribute set to "logical" ("soft" by IE) by default,
The textarea element has no wrap attribute according to the HTML
specifications. Browsers generally recognize such an attribute, but
information about "logical" as a value is outdated. The currently
recognized values are "soft", "hard", and "off".

There is of course no defined default for an attribute that is not
defined in the specifications. Most browsers actually behave as if
wrap="soft" had been given, but there is some variation in what this
means. This is not surprising, since there is no published specification
of what it means. Actually, the specifications more or less say that no
wrapping take place, since the idea is that the user can type
arbitrarily long lines. See
http://www.cs.tut.fi/~jkorpela/forms/textarea.html
for some explanations.
so strings will be wrapped after reaching the opposite border, but only
manually typed Enter's will be submitted.
More or less so, but there's a difference between IE and Firefox: if
there is a "word" (sequence of characters not containing whitespace
characters) that is longer than the textarea width, IE breaks the "word"
visually, whereas Firefox introduces horizontal scrolling. I don't think
there's a way to change the Firefox behavior (which corresponds to the
specifications better than the IE behavior).

To see what this means, test this on your browsers:

<textarea rows=3 cols=12>
supercalifragilisticexpialidocious
</textarea>
So your task is to prevent
wrap, not to enable it ;-)
Forcing either of them is impossible. The crucial question is why the OP
wants to force this or that behavior in this issue.
You can partially emulate wrap="off" by setting textarea style to:
white-space: nowrap;
Maybe it should do that, but it doesn't, even if you add overflow: auto
or overflow: scroll. That's at least the result of my testing on
Firefox. Please specify the URL of your test document and the version(s)
of Firefox you tested, if you have different _observations_.
But overall it is more standard and reliable to set "wrap" attribute:
"physical" - all visual line breaks are submitted as newlines
"logical" - you have visual line breaks but only "hardtyped" breaks are
submitted
"off" - rather clear I guess :-)
I don't think "physical" and "logical" have been supported for a long
time. At least Firefox 1.5 ignores them.
P.S. This attribute is missing in W3C DTD's by mistake
Please don't try to rewrite history. It was no mistake. Read the actual
specifications to learn how textarea was meant to work. Wrapping was
later invented by browser vendors and implemented inconsistently and
confusingly, as it still is.
Nevertheless it is supported by all ever
existed browsers.
Any statements about "all browsers" tend to tell about the limited
experience of the person who makes the statement rather than the reality
around us.
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.


You didn't bother actually testing such matters, did you?
Mar 15 '06 #3
VK

Jukka K. Korpela wrote:
VK wrote:
Textarea has wrap attribute set to "logical" ("soft" by IE) by default,
That was my mistake: the set is "physical", *** virtual *** and "off".
I mistyped it because I must was thinking of total absence of logic in
this situation :-)
The textarea element has no wrap attribute according to the HTML
specifications. Browsers generally recognize such an attribute, but
information about "logical" as a value is outdated. The currently
recognized values are "soft", "hard", and "off".
Sorry again for "logical" instead of proper "virtual". HTML perfectly
has wrap attribute since Netscape 3 at least. It is not presented
though in W3C DTD's which is a serious problem of W3C but not of the
web community as such.
There is of course no defined default for an attribute that is not
defined in the specifications.
Of course you checked it, did you? For 90% of current UA's it is set to
"soft" by default, the rest is hiding the same setting from sensitive
eyes of W3C :-)
Most browsers actually behave as if
wrap="soft" had been given, but there is some variation in what this
means. This is not surprising, since there is no published specification
of what it means. Actually, the specifications more or less say that no
wrapping take place, since the idea is that the user can type
arbitrarily long lines. See
http://www.cs.tut.fi/~jkorpela/forms/textarea.html
for some explanations.
so strings will be wrapped after reaching the opposite border, but only
manually typed Enter's will be submitted.


More or less so, but there's a difference between IE and Firefox: if
there is a "word" (sequence of characters not containing whitespace
characters) that is longer than the textarea width, IE breaks the "word"
visually, whereas Firefox introduces horizontal scrolling. I don't think
there's a way to change the Firefox behavior (which corresponds to the
specifications better than the IE behavior).

To see what this means, test this on your browsers:

<textarea rows=3 cols=12>
supercalifragilisticexpialidocious
</textarea>


You are repeating the same mistake as 7 years ago - wrap attribute
doesn't set a *representation mode* - though it affects on it directly.
wrap attribute governes submission process of teaxtarea data. You
really should read old Netscape specs and consult with experienced
server admins. ;-) It is currently broken on some browsers in the
submission part, though the representation reflection is still working.
And I see W3C to blame for that because for 7 years no one reasonnable
browser producer could drop this attribute. So even the "standards
followers" had to implement it:- but in kind of conspiracy situation,
bootlegging it on the backyard.
P.S. This attribute is missing in W3C DTD's by mistake


Please don't try to rewrite history. It was no mistake. Read the actual
specifications to learn how textarea was meant to work. Wrapping was
later invented by browser vendors and implemented inconsistently and
confusingly, as it still is.


I was using wrap attribute since Netscape 3.0 Gold and never stopped to
do it - with necessary discrepancies adjustments over time. And no
offence but in the year 1999 W3C's activity was rather out of intensive
public interest. It was more important to know and remember all new
features and bugs in NN and IE. But coming back to "rewrite history":-
"I don't like it so it never existed and never will exist" - is an
exact case of trying to rewrite the history. And the lesson W3C may get
out of it is that no one can ignore the reality - but reality can
easily ignore anyone.
Nevertheless it is supported by all ever
existed browsers.


Any statements about "all browsers" tend to tell about the limited
experience of the person who makes the statement rather than the reality
around us.


Read about reality above.
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.


You didn't bother actually testing such matters, did you?


I'm not testing - I'm using. W3C could facilitate the usage greatly by
finally sticking to one of de-facto standards and requiring the same
from all players (of whom willing to listen W3C).

Mar 15 '06 #4
VK wrote:
That was my mistake: the set is "physical", *** virtual *** and "off".
No it isn't. You are still in error.
Sorry again for "logical" instead of proper "virtual".
Stop saying you're sorry and check the facts. Neither of those values
has any support worth mentioning. Using wrap="virtual" seems to work for
the same reason as wrap="Hello world" does: it is ignored.
HTML perfectly
has wrap attribute since Netscape 3 at least.
Smells like trolling.
To see what this means, test this on your browsers:

<textarea rows=3 cols=12>
supercalifragilisticexpialidocious
</textarea>


You are repeating the same mistake as 7 years ago


Do you mean that seven years ago you actually checked facts before
trying to give advice in public?
- wrap attribute
doesn't set a *representation mode*


Stop babbling and check the facts. What's so difficult in actually
looking at how browsers work?
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.


You didn't bother actually testing such matters, did you?


I'm not testing - I'm using.


So when giving advice in future, will you be honest and precede your
advice with a statement that says that you describe what you have been
using, without actually checking the specifications _or_ actual browser
behavior in recent years?
Mar 15 '06 #5
VK
Jukka K. Korpela wrote:

<snip>
- wrap attribute
doesn't set a *representation mode*


Stop babbling and check the facts. What's so difficult in actually
looking at how browsers work?


With my pleasure. It is not clear though why it was necessary to wait 7
years until someone VK will make the job of the relevant W3C members(?)
My original statement first once again, OK?

"WRAP attribute in textarea is not a representation attribute despite
it has direct by secondary representation effect. This attribute
governes of how textarea data are treated and submitted".
A conclusion from this statement would be that it cannot be adequately
replaced by CSS representation rules - and never could, that is the
main reason it existed, existed and will ever exist.

Now the test (watch breaks, <textarea... strings should be on one line)
- let's go first by IE's model ("hard", "soft", "off"):

<html>
<head>
<title>WRAP test</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
</head>
<body>
<form method="GET" action="">
<textarea name="ta01" cols="8" rows="4" wrap="OFF">Looooooooong
line</textarea>
<textarea name="ta02" cols="8" rows="4" wrap="SOFT">Looooooooong
line</textarea>
<textarea name="ta03" cols="8" rows="4" wrap="HARD">Looooooooong
line</textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.

You didn't bother actually testing such matters, did you?


I'm not testing - I'm using.


So when giving advice in future, will you be honest and precede your
advice with a statement that says that you describe what you have been
using, without actually checking the specifications _or_ actual browser
behavior in recent years?


Briefly and plainly (in continuation of my original request to W3C made
not a while ago): how soon we can expect HTML DTD's taken out of the
freezer (as they are "frozen" as one explained to me since 1999) and
brought back into usable condition?

I am not trolling: I am asking a very practical question from a person
who presumably may answer on it.

Mar 15 '06 #6
VK

VK wrote:
"WRAP attribute in textarea is not a representation attribute despite
it has direct by secondary representation effect.


"WRAP attribute in textarea is not a representation attribute despite
it has a direct but secondary representation effect.

Mar 15 '06 #7
VK wrote:
Now the test (watch breaks, <textarea... strings should be on one line)
- let's go first by IE's model ("hard", "soft", "off"):


Your way of saying that you were totally wrong in your advocation of
"physical" and "logical" is implicit but clear. Your attempt to
obfuscate this simple thing by pointless snippets of code, confused
attacks at the W3C, etc., makes it also rather clear that you have
decided to act destructively. Don't be surprised if you'll be ignored.
Mar 16 '06 #8
VK

Jukka K. Korpela wrote:
VK wrote:
Now the test (watch breaks, <textarea... strings should be on one line)
- let's go first by IE's model ("hard", "soft", "off"):
Your way of saying that you were totally wrong in your advocation of
"physical" and "logical" is implicit but clear.


I'm still not clear where did you get "logical" value. From my side it
was a typo instead of proper "virtual". And yes "hard/soft/off" have
better coverage taking into account the prevailing UA. By your
consideration it solves the problem of missing "wrap" in DTD anyhow?
Your attempt to
obfuscate this simple thing by pointless snippets of code, confused
attacks at the W3C, etc., makes it also rather clear that you have
decided to act destructively.
"pointless snippets of code"? Sorry, but did you actually try it? I
made it method="get" so one could see the submission dump in the
address bar. Did you look at new line escape sequences for off / soft /
hard?

But the main answer I guess is that HTML DTD's are frozen and will stay
frozen forever? Well, negative answer is still an answer. Let's wait
another year to come back to the same question.
Don't be surprised if you'll be ignored.


Don't be surprised if W3C DTD be (forcely) ignored.

Mar 16 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Sunil Kulkarni | last post by:
I need to validate my TextArea as follows: 1) IT SHOULD ALLOW FOR ONLY 5 COLUMNS 2) IT SHOULD ALLOW ONLY 65 CHARACTERS PER ROW I need some kind of a JS validation for the same. I have tried...
5
by: chin | last post by:
Hi, I am trying to retrieved the value of the textarea with the newline preserved without having to submit the form to the server. Does anyone knows how to? I tried soft and hard wrap but both...
3
by: Fluffy Convict | last post by:
I am trying to write a script that changes a textarea wrap realtime, basically like you can switch to and from "wordwrap" in Microsofts Notepad. Because of a bug...
6
by: Tony | last post by:
The w3schools HTML tag reference for <textarea> http://www.w3schools.com/tags/tag_textarea.asp says that the attributes 'cols' and 'rows' are REQUIRED attributes for the textarea tag. Looking at...
2
by: mattrapoport | last post by:
Hello, I am have a div and inside of that div I have a textarea. There is nothing else in the div. The text in the textarea will come from a database so it needs to be able to wrap and grow as...
3
by: zjw2112 | last post by:
Hello. I have some javascript code that dynamically creates a textarea and sets the wrap value to hard, which I thought would preserve CR/LF in the textarea: var otherTextArea =...
20
by: Tony B | last post by:
I'm learning a little about using forms in php to enter data, and have a couple of questions re textarea. At the moment I just use "addslashes() to process the value from textarea so that...
1
by: RFleming | last post by:
I attempted to use the advice below, but still I keep getting word wrap in my inputtextarea. I am very new to XML and CSS, and I do not totally understand the layout. Below is the single XML line...
8
by: Floortje | last post by:
Hi, for the past few days now im trying to find some info on how to manipulate textarea's with javascript. Im trying to add content when a certain element is clicked or alter content if another is...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.