Re: Really basic help...

2010-11-02 Thread Martijn Dashorst
Did you check your browser settings? Often auto-fill will fill in the fields.

Martijn

On Mon, Nov 1, 2010 at 3:44 PM, adam.gibbons adam.s.gibb...@gmail.com wrote:

 Hi there!

 I'm extreamly new to Whicket, trying to put together my first sample
 application based on the AuthenticatedWebSession example.

 I have everything up and running nicely now, but I'd like to make a few
 simple changes.

 On the LoginPage, there are feilds for username, password and a check box
 for 'remeber me'.

 I want the username feild to be empty, but it always says support, I can
 not find anywhere in the code where this is set or any way to change it to
 something I want.

 In my page's constructor I can get the TextField object for the username
 feild using get(signInPanel:signInForm:username), but I don't see any
 methods for getting or setting the value...
 I'm sure i'm missing something very obvious!! Any help would be much
 appriciated!!

 Kind regards,
 Adam
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Really-basic-help-tp3022249p3022249.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org





-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Really basic help...

2010-11-01 Thread adam.gibbons

Hi there!

I'm extreamly new to Whicket, trying to put together my first sample
application based on the AuthenticatedWebSession example.

I have everything up and running nicely now, but I'd like to make a few
simple changes.

On the LoginPage, there are feilds for username, password and a check box
for 'remeber me'.

I want the username feild to be empty, but it always says support, I can
not find anywhere in the code where this is set or any way to change it to
something I want.

In my page's constructor I can get the TextField object for the username
feild using get(signInPanel:signInForm:username), but I don't see any
methods for getting or setting the value...
I'm sure i'm missing something very obvious!! Any help would be much
appriciated!!

Kind regards,
Adam
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Really-basic-help-tp3022249p3022249.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread Igor Vaynberg
it pulls that value out of its model, so check whatever object the
model is pointing to.

-igor

On Mon, Nov 1, 2010 at 7:44 AM, adam.gibbons adam.s.gibb...@gmail.com wrote:

 Hi there!

 I'm extreamly new to Whicket, trying to put together my first sample
 application based on the AuthenticatedWebSession example.

 I have everything up and running nicely now, but I'd like to make a few
 simple changes.

 On the LoginPage, there are feilds for username, password and a check box
 for 'remeber me'.

 I want the username feild to be empty, but it always says support, I can
 not find anywhere in the code where this is set or any way to change it to
 something I want.

 In my page's constructor I can get the TextField object for the username
 feild using get(signInPanel:signInForm:username), but I don't see any
 methods for getting or setting the value...
 I'm sure i'm missing something very obvious!! Any help would be much
 appriciated!!

 Kind regards,
 Adam
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Really-basic-help-tp3022249p3022249.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread Brian Topping
Adam,

If you are just getting started, models are one of the most important and 
underappreciated aspects of mastering Wicket.  It's really worth putting in the 
time up front to learn their nuances.

Have you checked out the excellent Wicket In Action book by Manning Press?  
It's one of those books that is worth the money if you value your time... 

Cheers, Brian

On Nov 1, 2010, at 12:52 PM, Igor Vaynberg wrote:

 it pulls that value out of its model, so check whatever object the
 model is pointing to.
 
 -igor
 
 On Mon, Nov 1, 2010 at 7:44 AM, adam.gibbons adam.s.gibb...@gmail.com wrote:
 
 Hi there!
 
 I'm extreamly new to Whicket, trying to put together my first sample
 application based on the AuthenticatedWebSession example.
 
 I have everything up and running nicely now, but I'd like to make a few
 simple changes.
 
 On the LoginPage, there are feilds for username, password and a check box
 for 'remeber me'.
 
 I want the username feild to be empty, but it always says support, I can
 not find anywhere in the code where this is set or any way to change it to
 something I want.
 
 In my page's constructor I can get the TextField object for the username
 feild using get(signInPanel:signInForm:username), but I don't see any
 methods for getting or setting the value...
 I'm sure i'm missing something very obvious!! Any help would be much
 appriciated!!
 
 Kind regards,
 Adam
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Really-basic-help-tp3022249p3022249.html
 Sent from the Users forum mailing list archive at Nabble.com.
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread Martin Makundi
In my opinnion best way to learn is by trial and error ;)




Not the most profitable way, though ;)

**
Martin

2010/11/1 Brian Topping topp...@codehaus.org:
 Adam,

 If you are just getting started, models are one of the most important and 
 underappreciated aspects of mastering Wicket.  It's really worth putting in 
 the time up front to learn their nuances.

 Have you checked out the excellent Wicket In Action book by Manning Press?  
 It's one of those books that is worth the money if you value your time...

 Cheers, Brian

 On Nov 1, 2010, at 12:52 PM, Igor Vaynberg wrote:

 it pulls that value out of its model, so check whatever object the
 model is pointing to.

 -igor

 On Mon, Nov 1, 2010 at 7:44 AM, adam.gibbons adam.s.gibb...@gmail.com 
 wrote:

 Hi there!

 I'm extreamly new to Whicket, trying to put together my first sample
 application based on the AuthenticatedWebSession example.

 I have everything up and running nicely now, but I'd like to make a few
 simple changes.

 On the LoginPage, there are feilds for username, password and a check box
 for 'remeber me'.

 I want the username feild to be empty, but it always says support, I can
 not find anywhere in the code where this is set or any way to change it to
 something I want.

 In my page's constructor I can get the TextField object for the username
 feild using get(signInPanel:signInForm:username), but I don't see any
 methods for getting or setting the value...
 I'm sure i'm missing something very obvious!! Any help would be much
 appriciated!!

 Kind regards,
 Adam
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Really-basic-help-tp3022249p3022249.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread Brian Topping
As they say, a million monkeys on typewriters will eventually produce the 
works of Shakespeare.  :-)

I guess I'm lazy, to each his own.

On Nov 1, 2010, at 1:21 PM, Martin Makundi wrote:

 In my opinnion best way to learn is by trial and error ;)
 
 
 
 
 Not the most profitable way, though ;)
 
 **
 Martin
 
 2010/11/1 Brian Topping topp...@codehaus.org:
 Adam,
 
 If you are just getting started, models are one of the most important and 
 underappreciated aspects of mastering Wicket.  It's really worth putting in 
 the time up front to learn their nuances.
 
 Have you checked out the excellent Wicket In Action book by Manning Press?  
 It's one of those books that is worth the money if you value your time...
 
 Cheers, Brian
 
 On Nov 1, 2010, at 12:52 PM, Igor Vaynberg wrote:
 
 it pulls that value out of its model, so check whatever object the
 model is pointing to.
 
 -igor
 
 On Mon, Nov 1, 2010 at 7:44 AM, adam.gibbons adam.s.gibb...@gmail.com 
 wrote:
 
 Hi there!
 
 I'm extreamly new to Whicket, trying to put together my first sample
 application based on the AuthenticatedWebSession example.
 
 I have everything up and running nicely now, but I'd like to make a few
 simple changes.
 
 On the LoginPage, there are feilds for username, password and a check box
 for 'remeber me'.
 
 I want the username feild to be empty, but it always says support, I can
 not find anywhere in the code where this is set or any way to change it to
 something I want.
 
 In my page's constructor I can get the TextField object for the username
 feild using get(signInPanel:signInForm:username), but I don't see any
 methods for getting or setting the value...
 I'm sure i'm missing something very obvious!! Any help would be much
 appriciated!!
 
 Kind regards,
 Adam
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Really-basic-help-tp3022249p3022249.html
 Sent from the Users forum mailing list archive at Nabble.com.
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread Jeremy Thomerson
On Mon, Nov 1, 2010 at 12:21 PM, Martin Makundi 
martin.maku...@koodaripalvelut.com wrote:

 In my opinnion best way to learn is by trial and error ;)


True but:

Not the most profitable way, though ;)


That's the problem.  Wicket makes it very easy to get up-and-running.  And
in doing so, you will definitely shoot yourself in the foot in a way that
kills the maintainability that a well-written Wicket app would give you.  As
Brian said, 98% of the time [1] this is caused by not understanding models -
something I've seen at literally dozens of companies as I teach and consult
on Wicket projects.

[1] - It is true that 76.98% of statistics are made up on the spot.

-- 
Jeremy Thomerson
http://wickettraining.com
*Need a CMS for Wicket?  Use Brix! http://brixcms.org*


Re: Really basic help...

2010-11-01 Thread Brian Topping

On Nov 1, 2010, at 1:57 PM, Brian Topping wrote:

 As they say, a million monkeys on typewriters will eventually produce the 
 works of Shakespeare.  :-)

FWIW, http://en.wikipedia.org/wiki/Infinite_monkey_theorem describes what I was 
talking about here.  
-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread James Carman
On Tue, Nov 2, 2010 at 12:11 AM, Brian Topping topp...@codehaus.org wrote:

 FWIW, http://en.wikipedia.org/wiki/Infinite_monkey_theorem describes what I 
 was talking about here.

And I had already trained 5 monkeys to code Wicket.  I thought you were serious!

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Really basic help...

2010-11-01 Thread Brian Topping

On Nov 2, 2010, at 12:31 AM, James Carman wrote:

 On Tue, Nov 2, 2010 at 12:11 AM, Brian Topping topp...@codehaus.org wrote:
 
 FWIW, http://en.wikipedia.org/wiki/Infinite_monkey_theorem describes what I 
 was talking about here.
 
 And I had already trained 5 monkeys to code Wicket.  I thought you were 
 serious!


Please don't create competition, I'm already having enough trouble keeping my 
job!


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org