Re: [Wicket-user] Replace a component with another component by adding a Behaviour

2007-07-20 Thread pixotec
thank you eelco, in the end it will be the panel-solution I think. but is there a way to diable the check? renders the added hidden field then a complete html-tag when it replaces textarea? -- View this message in context: http://www.nabble.com/Replace-a-component-with-another-component-by-addi

[Wicket-user] Replace a component with another component by adding a Behaviour

2007-07-12 Thread pixotec
I try to replace a TextArea with a HiddenField (or in next step with a Panel). before: Input comes here after: I added a Behaviour to the TextArea: public void bind(Component c) { target = c; HiddenField hiddenField = new HiddenField(target.getId(), target.getModel());

Re: [Wicket-user] Click Framework

2007-06-06 Thread pixotec
I was an user of click. I was fed up of self handling model data. click has no direct linking of pagefields to modelfields. I asked the developers, but they did not see the advantage of doing click the model binding. click uses velocity, wicket html. I prefer the wicket way. Francisco Diaz Trep