Re: Feedback AjaxButton

2008-01-23 Thread Jean-Baptiste Bellet
It works ! Thanks a lot Vincent :) jb Vincent Demay wrote: Hi Jean-Baptiste Jean-Baptiste Bellet a écrit : Hello all, This is my first wicket message, so first of all, I would like to gongrats the whole team for the great job ! Now, my problem : I have created a NewFeedbackPanel which

Re: Feedback AjaxButton

2008-01-22 Thread Gerolf Seitz
you need to add the feedbackpanel to the ajaxrequesttarget like: target.addComponent(indicator); gerolf On Jan 22, 2008 12:20 PM, Jean-Baptiste Bellet [EMAIL PROTECTED] wrote: Hello all, This is my first wicket message, so first of all, I would like to gongrats the whole team for the

Re: Feedback AjaxButton

2008-01-22 Thread Jean-Baptiste Bellet
I've done this, isn't it ? just below the line this.info(getLocalizer().getString(preferences.downloadSuccess, this)); jb Gerolf Seitz wrote: you need to add the feedbackpanel to the ajaxrequesttarget like: target.addComponent(indicator); gerolf On Jan 22, 2008 12:20 PM, Jean-Baptiste

Re: Feedback AjaxButton

2008-01-22 Thread Gerolf Seitz
oops, my bad. is was looking for a feedback variable ;) gerolf On Jan 22, 2008 1:18 PM, Jean-Baptiste Bellet [EMAIL PROTECTED] wrote: I've done this, isn't it ? just below the line this.info(getLocalizer().getString(preferences.downloadSuccess, this)); jb Gerolf Seitz wrote: you need to

Re: Feedback AjaxButton

2008-01-22 Thread Vincent Demay
Hi Jean-Baptiste Jean-Baptiste Bellet a écrit : Hello all, This is my first wicket message, so first of all, I would like to gongrats the whole team for the great job ! Now, my problem : I have created a NewFeedbackPanel which extends FeedbackPanel and override OnBeforeRender(). This

Re: Feedback AjaxButton

2008-01-22 Thread Sergiy Yevtushenko
Jean-Baptiste Bellet wrote: I guess that you need call indicator.setOutputMarkupId(true) before adding it to page. Regards, Sergiy. *- [EMAIL PROTECTED] http://es.os2.ru/ - To

Re: Feedback AjaxButton

2008-01-22 Thread Gerolf Seitz
not only setOutputMarkupId(true), but rather .setOutputMarkupPlaceHolderTag(true) otherwise an invisible component can't be made visible via ajax updates. gerolf On Jan 22, 2008 9:30 PM, Sergiy Yevtushenko [EMAIL PROTECTED] wrote: Jean-Baptiste Bellet wrote: I guess that you need call