Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread Martijn Dashorst
@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type all i can tell you isto make sure wicket.jar is on your buildpath under project properties. -Igor On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote: Hi Igor Im using eclipse with myEclipse ontop

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread Martijn Dashorst
To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type all i can tell you isto make sure wicket.jar is on your buildpath under project properties. -Igor On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote: Hi Igor

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread deshmol-lists
PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type all i can tell you isto make sure wicket.jar is on your buildpath under project properties. -Igor On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote: Hi Igor

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread Martijn Dashorst
:02 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type all i can tell you istomake sure wicket.jar is on your buildpath under project properties. -Igor On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote: Hi Igor Im using eclipse

RE: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Nino Wael
] On Behalf Of Nick Heudecker Sent: Thursday, February 23, 2006 8:42 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type ListView is abstract. You must implement the populateItem(...) method: new ListView(list, forklaring) { public void

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Martijn Dashorst
icket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type ListView is abstract. You must implement the populateItem(...) method: new ListView(list, forklaring) { public void populateItem(ListItem item) { // add stuff to item. } }; On 2/23/06, Nino Wa

RE: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Nino Wael
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martijn Dashorst Sent: Thursday, February 23, 2006 10:22 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type populateItem gives you the ListItem that is being created. add your controls

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Martijn Dashorst
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Martijn Dashorst Sent: Thursday, February 23, 2006 10:22 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type populateItem gives you the ListItem that is being created. add your

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Martijn Dashorst
rsday, February 23, 2006 8:42 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type ListView is abstract. You must implement the populateItem(...) method: new ListView(list, forklaring) { public void populateItem(ListItem item) { // add

RE: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Nino Wael
-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type Yep, only attach the listview not to the table, but to the tr. In your current implementation this will render the following: table wicket:id=maalinger trtd wicket:id=Actuelle forlob fordelt pa

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-22 Thread Nick Heudecker
ListView is abstract. You must implement the populateItem(...) method:new ListView(list, forklaring) { public void populateItem(ListItem item) { // add stuff to item. }};On 2/23/06, Nino Wael [EMAIL PROTECTED] wrote: Hi Im having trouble instantiateing the Listview control, I get the