Reputation: 9237
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.
Upvotes: 0
Views: 396
Reputation: 1143
You mean to use multiple
<h:message for="..." ... />
instead of single
<h:messages ... />
?
Upvotes: 2