My problem is that I have 2 forms in a single JSF page each having its
or
tag. As we know the message/messages
If you're using JSF 2, then you could just submit and update the form by ajax. This allows for partially updating the view.
...
...
Or if you can't/don't want to use ajax for some unobvious reason, or are still using the legacy JSF 1.x, then check in the rendered
attribute of
if the desired form is been submitted or not.
...
...
The
shouldn't have this problem by the way, in contrary to what you're implying in your question.