vote up 0 vote down star

Hi,

In Struts, you can confire a global prefix and suffix in a resource bundle file. Something like:

errors.prefix=<div class="error">
errors.suffix=</div>

So <div class="error"> will be added before each <html:errors and </div> will be added after each one.

So how can i get the same effect by using Spring form tags <form:errors ?

regards,

flag

65% accept rate

1 Answer

vote up 2 vote down

Why would you? Spring renders errors inside a <span> tag whose css class you specify via cssClass attribute of <spring:errors>. You can then style it however you want via CSS.

<span> itself is customizable too, apparently (I've just looked, never needed to change it myself):

<spring:errors element="div" cssClass="errorBox" path="..."/>

would wrap errors in <div class="errorBox"></div>

link|flag
@ChssPly76 Hi, no way to set up a global sufix and preffix ? I really need it. – Arthur Ronald F D Garcia Sep 22 at 19:45
Can you explain what you need it for? See my edit - you can very much do the div like you've specified in your question. If that's not enough (if you need several enclosed tags) I suppose your options are DOM manipulation or extending Spring's ErrorsTag and writing your own version. – ChssPly76 Sep 22 at 19:48
@ChssPly76 Thanks, but if you know a global settings, it would be better. – Arthur Ronald F D Garcia Sep 22 at 19:51
There are no Struts-like global settings for Spring's errors tag. – ChssPly76 Sep 22 at 19:52
1  
I understand, but "global" settings do not exist. Once again, though, <span> + CSS has always been enough for me. It's rather trivial to extend org.springframework.web.servlet.tags.form.ErrorsTag to add "global" settings if you really need them. – ChssPly76 Sep 22 at 19:55
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.