strange error: getter for member

2008-11-05 Thread Björn-Peter Tietjens
Hi, I am new to wicket and now I got a strange problem with wicket... WicketMessage: No get method defined for class: class mypackage.Artikel expression: artikel BUT: my class mypackage.Artikel does not have an member artikel... thanks for some help... complete error: WicketMessage: No

Re: strange error: getter for member

2008-11-05 Thread Jeremy Thomerson
Please show the code where you use either a PropertyModel or a CompoundPropertyModel - that's what is causing this. Wicket is trying to find the getArtikel() method on your Artikel class. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Nov 5, 2008 at 3:51 PM, Björn-Peter Tietjens

Re: strange error: getter for member

2008-11-05 Thread James Carman
On Wed, Nov 5, 2008 at 5:05 PM, Jeremy Thomerson [EMAIL PROTECTED] wrote: Please show the code where you use either a PropertyModel or a CompoundPropertyModel - that's what is causing this. Wicket is trying to find the getArtikel() method on your Artikel class. An *accessible* method.

Re: strange error: getter for member

2008-11-05 Thread Timo Rantalaiho
On Wed, 05 Nov 2008, Björn-Peter Tietjens wrote: WicketMessage: No get method defined for class: class mypackage.Artikel expression: artikel BUT: my class mypackage.Artikel does not have an member artikel... It sounds like your Form has a CompoundPropertyModel bound to ad Artikel instance