Re: notification system

2010-01-19 Thread Ernesto Reinaldo Barreiro
If you have a common denominator on your pages why not have there some panel that inform the user about new messages? e.g. with a link that opens up some kind of modal (or non modal) window with the messages. This panel could contain and AJAX timer that gets back to the server once in a while and

Re: notification system

2010-01-19 Thread chinedu efoagui
thank you Ernesto I was actually looking for a push solution but i will look at what you just described On 1/19/10, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: If you have a common denominator on your pages why not have there some panel that inform the user about new messages? e.g.

RE: notification system

2010-01-19 Thread Stefan Droog
@wicket.apache.org Subject: Re: notification system thank you Ernesto I was actually looking for a push solution but i will look at what you just described On 1/19/10, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: If you have a common denominator on your pages why not have there some panel

Re: notification system

2010-01-19 Thread Pedro Santos
Can look how FeedbackMessages and FeedbackPanel work too On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui chinedub...@gmail.comwrote: hello please am trying to build a notification system on an application.I have completed most of work. where I am stuck is how to trigger events that will

Re: notification system

2010-01-19 Thread chinedu efoagui
is there any documentation on how to use the wicket stuff push solution? On 1/19/10, Pedro Santos pedros...@gmail.com wrote: Can look how FeedbackMessages and FeedbackPanel work too On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui chinedub...@gmail.comwrote: hello please am trying to

Re: notification system

2010-01-19 Thread nino martinez wael
I last time I did this I ended up using http://wicketstuff.org/wicketdojo13/?wicket:bookmarkablePage=%3Aorg.wicketstuff.dojo.examples.toaster.ToasterSample , it's a pull solution though using a ajax timer. But I had the exact same requirement as you or so it looks. 2010/1/19 chinedu efoagui

RE: notification system

2010-01-19 Thread Stefan Droog
: notification system is there any documentation on how to use the wicket stuff push solution? On 1/19/10, Pedro Santos pedros...@gmail.com wrote: Can look how FeedbackMessages and FeedbackPanel work too On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui chinedub...@gmail.comwrote: hello please

Re: notification system

2010-01-19 Thread Ernesto Reinaldo Barreiro
One more thing... just take into account that using push will introduce additional JS dependencies (dojo)... while using AJAX timer will not. If you don't need your messages refreshed the very second they arrive then probably the AJAX timer will be more than enough. Regards, Ernesto On Tue,