Re: How to make a feedback panel appear on page load?

2009-12-01 Thread Early Morning
Hi Martin, Yes, and the feedback appears when doing a normal in-page Ajax action (such as clicking the search button within the page), but not when loading the page from setResponsePage. Regards, Ces On Tue, Dec 1, 2009 at 3:56 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: Did you

How to make a feedback panel appear on page load?

2009-11-30 Thread Early Morning
Hi, I'm trying to make a feedback panel appear immadiately after page load (such as when you search and the results appear in a new page, but there is an error), but even if I call error(message); no feedback panel appears. What would be the recommended way to do this? Thanks! Regards, Ces

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Martin Makundi
Hi! It should appear if you call error or something... what's your code? ** Martin 2009/12/1 Early Morning goodmorning...@gmail.com: Hi, I'm trying to make a feedback panel appear immadiately after page load (such as when you search and the results appear in a new page, but there is an

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Jonathan Locke
if i understand you correctly, you can set an error directly on the session (as opposed to on a particular component) and it will display on the target page. Early Morning wrote: Hi, I'm trying to make a feedback panel appear immadiately after page load (such as when you search and the

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Early Morning
Hi Martin, I pass a DataProvider in the constructor of the page, and process it somewhat like this: if(accountDataProvider == null){ container.add(new EmptyPanel(resultPanel)); asm = new AccountSearchModel(); }else{ asm =

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Martijn Dashorst
Did you add a feedbackpanel? Martijn On Tue, Dec 1, 2009 at 8:03 AM, Early Morning goodmorning...@gmail.com wrote: Hi Martin, I pass a DataProvider in the constructor of the page, and process it somewhat like this:        if(accountDataProvider == null){            container.add(new