Re: Default implementation of IChainingModel

2009-10-01 Thread Daniel Stoch
Hi, Jeremy Thomerson wrote: I don't think one was ever created and it fell off my radar. If you create one, can you post yours and post a link to it back on this thread? Here is my implementation for Wicket 1.4 (with generics). It is a little bit different than Scott's one. import

Re: Default implementation of IChainingModel

2009-09-30 Thread Scott Swank
I searched the JIRA for IChainingModel and didn't get any hits. Did anyone create a JIRA issue? Here's an implementation of mine. public class BaseChainingModel implements IChainingModel { private static final long serialVersionUID = 1L; private Object target; public

Re: Default implementation of IChainingModel

2009-09-30 Thread Jeremy Thomerson
I don't think one was ever created and it fell off my radar. If you create one, can you post yours and post a link to it back on this thread? Thanks! -- Jeremy Thomerson http://www.wickettraining.com On Wed, Sep 30, 2009 at 4:45 PM, Scott Swank scott.sw...@gmail.com wrote: I searched the

Re: Default implementation of IChainingModel

2009-09-30 Thread Scott Swank
https://issues.apache.org/jira/browse/WICKET-2498 We're still on Wicket 1.3.5, so I put in a 1 hour estimate for someone to add generic typing. Scott On Wed, Sep 30, 2009 at 3:58 PM, Jeremy Thomerson jer...@wickettraining.com wrote: I don't think one was ever created and it fell off my radar.

Default implementation of IChainingModel

2009-04-08 Thread Juan G. Arias
Hi all,First of all, I'm using wicket 1.3.5 I'm writing a model and ai need it to be chaineable. I mean, I need this model to contain another model, so my model can obtain the data, for example, from a property model. Ok, I've been reading and this is solved by the IChainingModel. But I couldn't

Re: Default implementation of IChainingModel

2009-04-08 Thread Jeremy Thomerson
I think that's a good idea - I have done a similar thing in my own projects. Please open a JIRA so this idea doesn't get lost, but this is one I may try to do soon. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Apr 8, 2009 at 4:36 PM, Juan G. Arias juangar...@gmail.com wrote: Hi