So, I have like 10 events that I want to handle in the same page, and to do that I use like "pop ups" but they really are "p:dialog". Every event has his own comment like this
<p:dialog >
<p:inputTextarea value="bean.comment" />
</p:dialog>
the thing is there are so many events such as dialogues and textareas. What happens is that the last dialog has the control over the bean variable "comment" so no matter if I change in another dialog, when I submit always has the default value or rather the value of the last dialog.
The question is: can I do this but that actually works? so if I change the comment on the first dialog when i want to use that value y can. OR I have to use a different bean variable to do this?
thanks!