Re: [Wicket-user] Wicket customizability

2007-07-25 Thread Eelco Hillenius
> i don't really understand what you're talking about because i don't know > your > requirements. but don't forget two things: 1) the primary unit of reuse in > wicket is the panel and 2) you can put any component (such as a panel) in a > completely self-contained jar because of packaged resources

Re: [Wicket-user] Wicket customizability

2007-07-25 Thread Jonathan Locke
i don't really understand what you're talking about because i don't know your requirements. but don't forget two things: 1) the primary unit of reuse in wicket is the panel and 2) you can put any component (such as a panel) in a completely self-contained jar because of packaged resources. if

Re: [Wicket-user] Wicket customizability

2007-07-25 Thread Igor Vaynberg
sounds to me like what you need is indirection something like IComponentFactory { Component newComponent(String id, IModel model); } then you can configure these in whatever context (in your case spring) and inject those into pages/panels/etc and let them create children. this is essentially th

[Wicket-user] Wicket customizability

2007-07-25 Thread Wander Grevink
Hi all, I have just created my first wicket app: a simple JCR (jsr-170) browser/editor with a tree showing nodes on the left, a form for editing node properties on the right, and a menu with some actions (add, delete, save etc.) on top. All 100% Ajax, it just works! As a side note: I started fr