Re: [Wicket-user] LoadableDetachableModel question

2006-07-07 Thread Vincent Jenks
I use info() On 7/7/06, Jerry Smith [EMAIL PROTECTED] wrote: Using a typical situation like: IModel myListModel = new LoadableDetachableModel() { protected Object load() { Object result = null; try { result = someServiceOrDao.findSomeListOfObjects(); }

Re: [Wicket-user] LoadableDetachableModel question

2006-07-07 Thread Eelco Hillenius
Feedback panel typically should display any messages. You added a feedback panel to your page, and you are rendering the same page? Personally, I wouldn't catch exceptions in my models though. If a service fails and it is not designed to fail quietly, I would rather display some error page. But

Re: [Wicket-user] LoadableDetachableModel question

2006-07-07 Thread Jerry Smith
To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] LoadableDetachableModel question Feedback panel typically should display any messages. You added a feedback panel to your page, and you are rendering the same page? Personally, I wouldn't catch exceptions in my models though

Re: [Wicket-user] LoadableDetachableModel question

2006-07-07 Thread Jerry Smith
Smith Sent: Friday, July 07, 2006 2:06 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] LoadableDetachableModel question I've added the FeedbackPanel, but still no message. I know it's throwing an error. I'll try a test project and see if it still happens. -Original

Re: [Wicket-user] LoadableDetachableModel question

2006-07-07 Thread Eelco Hillenius
2:06 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] LoadableDetachableModel question I've added the FeedbackPanel, but still no message. I know it's throwing an error. I'll try a test project and see if it still happens. -Original Message- From