RE: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Tom van Zummeren
thing. Now I can explain why this solution is chosen.   Tom From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Vaynberg Sent: maandag 20 maart 2006 21:32 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   On 3/20/06, Tom van

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Igor Vaynberg
t be very hard.-Igor  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Igor Vaynberg Sent: maandag 20 maart 2006 17:54 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   we can write a traversal for setters, but i really dont see value

RE: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Tom van Zummeren
Vaynberg Sent: maandag 20 maart 2006 17:54 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   we can write a traversal for setters, but i really dont see value in it, what is your setter going to do - stick it into some private field. as far as

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Igor Vaynberg
wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   there is more info here: http://www.wicket-wiki.org.uk/wiki/index.php/Spring -Igor On 3/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote: One warning don't do this: @SecuredW

RE: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Tom van Zummeren
-user] New features Wicket 1.2   there is more info here: http://www.wicket-wiki.org.uk/wiki/index.php/Spring -Igor On 3/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote: One warning don't do this: @SecuredWicketPage public class EditAccountPage extends Template{

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Igor Vaynberg
there is more info here:http://www.wicket-wiki.org.uk/wiki/index.php/Spring-IgorOn 3/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote: One warning don't do this:@SecuredWicketPage public class EditAccountPage extends Template{    private String repeatedPassword;     @SpringBean        private Acco

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Johan Compagner
One warning don't do this:@SecuredWicketPage public class EditAccountPage extends Template{    private String repeatedPassword;    @SpringBean        private AccountService accountService = null;     public EditAccountPage() {        Form form = new Form("form", new CompoundPropertyModel(this))

RE: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Tom van Zummeren
:55 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   Usually most new features have corresponding examples in the examples projects. Download the examples distributions and take a look at the code. Writing articles is hard, much work, and generally

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread karthik Guru
arthik Guru Sent: Monday, March 20, 2006 2:59 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   > Spring support for injecting your business logic into your web pages in a non-intrusive manner, while still being able to use the > convenient Wic

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Martijn Dashorst
Usually most new features have corresponding examples in the examples projects. Download the examples distributions and take a look at the code. Writing articles is hard, much work, and generally not something developers like to do. Writing software on the other hand is. Hence a lot of examples. Ma

RE: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread Tom van Zummeren
karthik Guru Sent: Monday, March 20, 2006 2:59 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] New features Wicket 1.2   > Spring support for injecting your business logic into your web pages in a non-intrusive manner, while still being able to use the > convenient Wicket

Re: [Wicket-user] New features Wicket 1.2

2006-03-20 Thread karthik Guru
> Spring support for injecting your business logic into your web pages in a non-intrusive manner, while still being able to use the > convenient Wicket idiom for creating pages (using the Java new operator).Yes - this one is my favourite! . ..actually even IAuthorizationStrategy and Ajax support ro

[Wicket-user] New features Wicket 1.2

2006-03-20 Thread Tom van Zummeren
I was wondering if there are any examples yet of new features in Wicket 1.2   Because on the wicket site I saw a list of new features in Wicket 1.2, but it didn’t say how the new features are implemented. In this case I’d like to know the following:   Spring support for injecting your