[Wicket-user] Re: where do I put controller/dispatcher logic?

2005-11-10 Thread Steven McNeel
Thanks for all the responses about this topic. The specific thing I'm trying to accomplish is this: I'm building a site with a standard sort of template page (which includes a navigation pane, a content pane, a search pane, the usual stuff). Every request needs to fire a query to a data store

Re: [Wicket-user] Re: where do I put controller/dispatcher logic?

2005-11-10 Thread Eelco Hillenius
If they are not in the scope of components but in the scope of a request, than it's fine to put the logic in a custom request cycle. Nothing wrong with that. Just wanted to make sure you have to be in that scope :) Eelco On 11/10/05, Steven McNeel [EMAIL PROTECTED] wrote: Thanks for all the