Re: variable substitution in html:textarea

2014-10-31 Thread Christoph Nenning
> How to do variable substitution in html:textarea? e.g. Java code > package util; > public interface Literals {public static final String LAST_NAME > = "lastName";} > my.jsp > <%@ page import="util.Literals" %> > > > > I try to m

variable substitution in html:textarea

2014-10-30 Thread Albert Kao
How to do variable substitution in html:textarea? e.g. Java code package util; public interface Literals {    public static final String LAST_NAME = "lastName";} my.jsp <%@ page import="util.Literals" %> I try to make "lastName" to appear at m

Re: html:textarea - escape html special characters

2005-11-09 Thread Kjersti Berg
On 10/11/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > Kjersti Berg wrote: > > The html:textarea will escape html special characters to html > > entities. Inputing an & will give a string with &. Fair enough. > > But why does inputting a < or > give

Re: html:textarea - escape html special characters

2005-11-09 Thread Laurie Harper
Kjersti Berg wrote: The html:textarea will escape html special characters to html entities. Inputing an & will give a string with &. Fair enough. But why does inputting a < or > give you &lt; instead of < ? Probably as a result of how you're using it; maybe you ha

html:textarea - escape html special characters

2005-11-09 Thread Kjersti Berg
The html:textarea will escape html special characters to html entities. Inputing an & will give a string with &. Fair enough. But why does inputting a < or > give you &lt; instead of < ? Kjersti - To unsubs

Re: html:textarea with tags

2005-11-05 Thread Christian Bollmeyer
Murray Collingwood schrieb: If you know of any sites providing formatted text inside a textarea I would be really interested (as would most readers) please post the link. It's not possible in plain HTML, but in JavaScript (to some degree). There are a lot of such scripts on the web, many of

Re: html:textarea with tags

2005-11-04 Thread Murray Collingwood
glib. > > > Sounds like you are missing your taglib definition for "html"? Can you > post your JSP > > file? > > > > mc > > > > > > On 4 Nov 2005 at 19:27, Eric Plante wrote: > > > > > Hi, > > > > > > I'd l

Re: html:textarea with tags

2005-11-04 Thread Eric Plante
> On 4 Nov 2005 at 19:27, Eric Plante wrote: > > > Hi, > > > > I'd like to use a html:textarea tag but my html tags in the text aren't > > parsed and there is no filter like bean:

Re: html:textarea with tags

2005-11-04 Thread Murray Collingwood
Sounds like you are missing your taglib definition for "html"? Can you post your JSP file? mc On 4 Nov 2005 at 19:27, Eric Plante wrote: > Hi, > > I'd like to use a html:textarea tag but my html tags in the text aren't > parsed and there is no filter like b

html:textarea with tags

2005-11-04 Thread Eric Plante
Hi, I'd like to use a html:textarea tag but my html tags in the text aren't parsed and there is no filter like bean:write has, Is there a way to make that tag parse html tags? Thanks - To unsubscribe, e-mail: [EMAIL

Re: html:text and html:textarea same width

2005-06-13 Thread Dave Newton
Tony Smith wrote: I want the text and textarea have the same widths. But it is not true with the above code when displayed in the browser. How can I fix it? CSS? This isn't a Struts issue, but HTML. Dave - To un

html:text and html:textarea same width

2005-06-13 Thread Tony Smith
Hi I am designing a page like: I want the text and textarea have the same widths. But it is not true with the above code when displayed in the browser. How can I fix it? Thanks, __ Yahoo! Mail Stay connected, organized, and protected. T

Re: getting html:textarea multiliple values

2005-01-20 Thread Jim Barrows
2005 11:02 PM > To: Struts Users Mailing List > Subject: RE: getting html:textarea multiliple values > > Sudheer, > > Textareas are single fields, not like pulldowns which could have multiple > items selected (or checkboxes, etc.). Are you saying you have many > html:textarea

RE: getting html:textarea multiliple values

2005-01-19 Thread David G. Friedman
All right, I'll bite, what is a textarea with multiple items selected? The html:textarea is a text input box. Are you thinking about another html: tag which allows multiple selections, like html:select, html:option, and html:options? Regards, David -Original Message- From: Su

RE: getting html:textarea multiliple values

2005-01-19 Thread Sudheer
No, single textarea with multiple item selected. I want to get the selected items. Thank you -Original Message- From: David G. Friedman [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 11:02 PM To: Struts Users Mailing List Subject: RE: getting html:textarea multiliple values

RE: getting html:textarea multiliple values

2005-01-19 Thread David G. Friedman
Sudheer, Textareas are single fields, not like pulldowns which could have multiple items selected (or checkboxes, etc.). Are you saying you have many html:textarea tags with the same property name for different purposes? -David, very confused by your question -Original Message- From

getting html:textarea multiliple values

2005-01-19 Thread Sudheer
Hi, How to retrieve multiple values selected for a html control like textarea from the form ? Thank you. Sudheer

RE: html:textarea

2004-10-19 Thread Serkant Karaca
: html:textarea Anyone know how to get the html:textarea tag to autowrap its text? I tried but no go. Thanks Wylie - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

html:textarea

2004-10-19 Thread Wylie van den Akker
Anyone know how to get the html:textarea tag to autowrap its text? I tried but no go. Thanks Wylie - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: linefeeds in html:textarea causes blank screen when submitted

2004-10-05 Thread Shinobu Kawai
Hi Ted, > Actually the registration example does not work for me if I use linefeeds in > the textarea (but does work if > I don't use linefeeds) That's peculiar. > Any other thoughts? What does the output HTML look like? And which browser are you using? If you do the same with plain old HTML,

Re: linefeeds in html:textarea causes blank screen when submitted

2004-10-05 Thread Ted Anagnost
PROTECTED]> Sent: Monday, October 04, 2004 1:11 AM Subject: Re: linefeeds in html:textarea causes blank screen when submitted Hi Ted, I have this defined within a : Everything works fine if I type in text without any linefeeds. But, if I use linefeeds inside the textarea, when I submit th

Re: linefeeds in html:textarea causes blank screen when submitted

2004-10-03 Thread Shinobu Kawai
Hi Ted, > I have this defined within a : > > > > Everything works fine if I type in text without any linefeeds. But, if I use > linefeeds inside > the textarea, when I submit the form I get a blank page. > > I'm using Tomcat 5.0, struts 1.2.4 Works on mine. > It does not even seem to su

linefeeds in html:textarea causes blank screen when submitted

2004-10-03 Thread Ted Anagnost
I have this defined within a : Everything works fine if I type in text without any linefeeds. But, if I use linefeeds inside the textarea, when I submit the form I get a blank page. I'm using Tomcat 5.0, struts 1.2.4 It does not even seem to submit the page to the server. I get no trace