I would hack up a small js component for this case, and "poke" it with the message, sort of maybe what I've done with the scriptaculous toaster.

rolandpeng wrote:
thank you,igor

here is my try and that work. But how could I display message only in alert dialog instead of both
feedback panel and alert dialog?
thanks.

roland.
--
HeaderContributor alert = new HeaderContributor(
  new IHeaderContributor() {
    public void renderHead(IHeaderResponse response) {
      FeedbackMessages messages = Session.get().getFeedbackMessages();
         for (Iterator iter = messages.iterator(); iter.hasNext();) {
        FeedbackMessage message = (FeedbackMessage) iter.next();
response.renderOnLoadJavascript("alert(\""+ message.getMessage() + "\");"); }
    }
});             
User oUser = new User();
cFeedback = new FeedbackPanel("feedback");
cFeedback.setOutputMarkupId(true);
cFeedback.add(alert);

--

igor.vaynberg wrote:
renderhead(IHeaderResponse r) {
  for (FeedbackMessage m:messages) {
    r.renderonloadjavascript("alert('"+m.toString()+"');");
  }
}

-igor


On Dec 31, 2007 11:25 PM, JohnSmith333 <[EMAIL PROTECTED]> wrote:
Thanks for your kindly reply and help.
I have read the FeedbackPanel  source code and know the use of
HeaderContributor.
But I still don't know how to do . Could you or anyone help me more?
Thanks!

HeaderContributor.forJavaScript("/js/default.js");




igor.vaynberg wrote:
see how feedbackpanel is implemented, you can write a header
contributor to spit feedback messages to a js function

-igor


On Dec 31, 2007 7:51 AM, JohnSmith333 <[EMAIL PROTECTED]>
wrote:
Could anyone tell me how to set the feedback message to js function
like
alert("some txt must set")?
thanks!
--
View this message in context:

http://www.nabble.com/set-the-feedback-message-to-js-function-tp14558865p14558865.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
View this message in context:
http://www.nabble.com/set-the-feedback-message-to-js-function-tp14558865p14565041.html

Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to