Re: [Newbie] Display multiple error messages in a list

2001-09-26 Thread Peter Pilgrim
If it aint broke, why fix it? -- Peter Pilgrim | |++44 (0)207-545-9923 \ \ ___ / / ... . - ( * ) --- -- _Cafe_Savannah,_San Antonio,Ibiza__ -- This e-mail may contain confidential and/or privileged info

Re: [Newbie] Display multiple error messages in a list

2001-09-25 Thread David Winterfeldt
There hasn't been a discussion about deprecating html:errors. I prefer html:messages over it just to get the formatting out of the messages and have a cleaner separation of the view from everything else, but there are a lot of JSP pages that use html:errors so I think it will be around for a whil

Re: [Newbie] Display multiple error messages in a list

2001-09-25 Thread Brian K. Buckley
>Otherwise it works like html:errors. Will html:messages replace and deprecate html:errors?

RE: [Newbie] Display multiple error messages in a list

2001-09-25 Thread David Winterfeldt
: Brian K. Buckley > [mailto:[EMAIL PROTECTED]] > Date: mardi 25 septembre 2001 11:26 > À: [EMAIL PROTECTED] > Objet: Re: [Newbie] Display multiple error messages > in a list > > > The examples I've seen solve this by mixing html > formatting right in with > the

RE: [Newbie] Display multiple error messages in a list

2001-09-25 Thread bruno . morin
: [EMAIL PROTECTED] Objet: Re: [Newbie] Display multiple error messages in a list The examples I've seen solve this by mixing html formatting right in with the error messages. error.myerror=This is my error message This seems like bad practice to me. If one needs to display errors in

RE: [Newbie] Display multiple error messages in a list

2001-09-25 Thread markus.colombo
] Display multiple error messages in a list Several errors messages are store in the ActionErrors instance ( generated in the validate method of a ActionForm ). The tag displays error messages without carriage return between them. What is the solution to display those messages with carriage return

Re: [Newbie] Display multiple error messages in a list

2001-09-25 Thread Brian K. Buckley
The examples I've seen solve this by mixing html formatting right in with the error messages. error.myerror=This is my error message This seems like bad practice to me. If one needs to display errors in a different format, one has to rewrite the errors files. It seems to me html:errors would b

RE: [Newbie] Display multiple error messages in a list

2001-09-25 Thread Alexander Jesse
] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 25, 2001 10:57 AM To: [EMAIL PROTECTED] Subject: [Newbie] Display multiple error messages in a list Several errors messages are store in the ActionErrors instance ( generated in the validate method of a ActionForm ). The tag displays error

[Newbie] Display multiple error messages in a list

2001-09-25 Thread bruno . morin
Several errors messages are store in the ActionErrors instance ( generated in the validate method of a ActionForm ). The tag displays error messages without carriage return between them. What is the solution to display those messages with carriage return between them (in a list by example) ? Th