Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.