Please browse the categories below to previous answers to questions like yours. If you do not find the answer for your particular situation, ask for help on the appropriate mailing list.
(Answer) (Category) Java Apache Project : (Category) Element Construction Set : (Category) Examples :
A couple of questions...
----------
From: "Doug Ahmann" douga@zoapworks.com
To: "ECS" ecs@list.working-dogs.com
Subject: RE: NBSP
Date: Wed, Jul 7, 1999, 1:48 PM


>How can I output text like this "Access Date:" without using something like
>U or H5.  I would just like to ouput text without any special
>characteristics.
>
>td.addElement(new U("Access Date:"));

td.addElement("Access Date:");

>2nd:  How do I implement NBSP for white space?

td.setFilterState(false);
td.addElement(Entities.NBSP + "Test" + Entities.NBSP);

setFilterState is the key to not getting your NBSP munged.
[Append to This Answer]
Previous: (Answer) Examples of creating a Html table...
Next: (Answer) A great idea about filter usage...
This document is: http://java.apache.org/faq/?file=247
[Search] [Appearance] [Show Expert Edit Commands]
This is a Faq-O-Matic 2.709.
Please browse the categories below to previous answers to questions like yours. If you do not find the answer for your particular situation, ask for help on the appropriate mailing list.