How to show a client-side message with Java JSF/Tobago?

Posted by Marcus on Stack Overflow See other posts from Stack Overflow or by Marcus
Published on 2010-01-29T13:46:30Z Indexed on 2010/06/11 10:02 UTC
Read the original article Hit count: 267

Filed under:
|
|
|
|

I have a web application created with JSF and Tobago. The user types some date into a sheet and clicks a button (all within one sheet-row). Now my java class checks whether the data is correct or not. In case there are some problems, I would like to show up something like a messagebox containing the errormessage.

I cannot use something like JDialog, since this would happen only server side. Every user independently of his location needs to get the message. I thought about setting the error information into a databean and having my jsp show up the message after reloading. But how can I achieve this? Is there something like a tag which can be used for this? Or can I use the "confirmation" facet for this? But how would I start it without having the user to do something?

Thanks in advance!

© Stack Overflow or respective owner

Related posts about java

Related posts about jsp