tags:

views:

39

answers:

1

I have a panel layout which has some text fields that require validation. What I need is to let error messages be shown between the fields (not on top or behind them): i.e I want the error message to take its own space and/or drag down the other text fields when the error occurs and everything returns to the way it was when the error vanishes.

+2  A: 

You mean to use multiple

<h:message for="..." ... />

instead of single

<h:messages ... />

?

igorp1024
Yes, that's right
Saher
So, was it an answer?
igorp1024
No, I am using multiple <ice:message but the problem is that the messages come above the panel (covers other text fields...etc).
Saher
I guess the problem is in your html markup (or IceFaces' rendered markup). Can you update your post and show the markup and screenshot?
igorp1024