Re: Response with FeedBackMessage

2010-01-01 Thread Marek Šabo
Thanks both of you, I already tried both of it, my problem was in fact that first option had null reporter and the second one had reporter of page. And as you may guess I was using componentfilter for this form. I will make a workaround for now. Is there any possibility of changing the reporter

Re: Response with FeedBackMessage

2010-01-01 Thread Martijn Dashorst
or: MyPage page = new MyPage(); page.info(...); setResponsePage(page); Martijn On Fri, Jan 1, 2010 at 6:43 AM, Martin Makundi wrote: > if you do getSession().info() > > 2010/1/1 Marek Šabo : >> Hi, >> >> I would like to ask how can I achieve propagation of a feedback message to a >> page that i

Re: Response with FeedBackMessage

2009-12-31 Thread Martin Makundi
if you do getSession().info() 2010/1/1 Marek Šabo : > Hi, > > I would like to ask how can I achieve propagation of a feedback message to a > page that is set in setResponsePage(). > Consider this: > > try { > ... > info(); > setResponsePage(); > } catch (e) { > error(e); > } > > Of course the erro

Response with FeedBackMessage

2009-12-31 Thread Marek Šabo
Hi, I would like to ask how can I achieve propagation of a feedback message to a page that is set in setResponsePage(). Consider this: try { ... info(); setResponsePage(); } catch (e) { error(e); } Of course the error is propagated, is it possible or can you suggest a workaround to achieve p