Re: Multiple apps on single server

2010-05-09 Thread Janning Vygen
On Saturday 08 May 2010 23:37:59 Ján Raska wrote: Hello, I'm thinking about making small business by selling/renting e-shop and CMS applications written in Wicket. Now I'm trying to figure out, how many such applications can be hosted on a single server (let's assume 2x Dual Core Xeon 2.66

DropDownBox should render as a label if only one choice is available

2010-01-06 Thread Janning Vygen
Hi, I want a DropDownBox which renders as a Label if only one Choice is available. I wrote a LabelDropDownPanel which you can see here http://pastie.org/768613 (is it ok to use pastie here?) My problem is, that the list of choices sometimes depends on another form Component. if i change

Re: Detecting an external change to the ModelObject of a Form

2010-01-05 Thread Janning Vygen
your master knows about your detail panel. so why don't you call detail.modelChanged(); and in your DetailPanel: onModelChanged() { form.modelChanged(); // or whatever is needed... form.clearInput(); super.onModelChanged() } Your form is still managed by your detail panel only. kind

Re: looking for example wicket and hibernate

2009-12-25 Thread Janning Vygen
Hi we have been starting with our hibernate/spring/wicket app a few weeks ago and its quite easy. We do it with maven2 like this: i show you some snippets, please ask me if you have any further questions: in your pom.xml: = properties

Domain Object Serialization

2009-12-16 Thread Janning Vygen
Hi all, i am using wicket for a few days. It is great! My first question: I tried some simple authorizations like described in WIA. this is part of my custom Session: public class AuthenticatedWebSession extends WebSession { private Useruser;

Re: Domain Object Serialization

2009-12-16 Thread Janning Vygen
, 2009 at 11:57 PM, Janning Vygen vy...@kicktipp.de wrote: Hi all, i am using wicket for a few days. It is great! My first question: I tried some simple authorizations like described in WIA. this is part of my custom Session: public class AuthenticatedWebSession extends WebSession