Re: optional DropDowns

2008-12-30 Thread Björn-Peter Tietjens
Hi thank you for your help. I did switch from int to Integer and it works fine now. Cheers B Matthias Keller schrieb: Hi Björn You should probably either switch from int to Integer (which can be null) or provide an own values list which includes your default entry for example with valu

AjaxFallbackDefaultDataTable problem

2008-12-29 Thread Björn-Peter Tietjens
Hi there, I would need some help on the AjaxFallbackDefaultDataTable please. I am using this AjaxFallbackDefaultDataTable to display entries from a database using hibernate and a SortableDataProvider. I inserted a Action column to delete entries. My ActionPanel adds a link and overwrites its

PropertyColumn

2008-12-18 Thread Björn-Peter Tietjens
Hi, when trying to user a PropertyColumn like this: ... List columns = new ArrayList(); columns.add(new PropertyColumn(new Model("ID"), "id")); columns.add(new PropertyColumn(new Model("First Name"),"firstName","firstName")); ... I keep getting the following error: ..."The type PropertyColumn

wicket-contrib-examples

2008-12-18 Thread Björn-Peter Tietjens
Hey, where can I view the sources of the "http://www.wicket-library.com/wicket-contrib-examples/cdapp"; ? Cheers Björn - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@w

Re: [VOTE] Organizing Wicket Stuff / Regular Release Schedule?

2008-11-25 Thread Björn-Peter Tietjens
[X] - YES - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: get method defined for class

2008-11-06 Thread Björn-Peter Tietjens
which is a string in your case (new PropertyModel(artikel, "name")), use e.g. new Model(artikel) Jurrie Overgoor-3 wrote: Björn-Peter Tietjens wrote: Hi all, i keep getting tis strange error:* WicketMessage: No get method defined for class: class java.lang.String expressi

get method defined for class

2008-11-06 Thread Björn-Peter Tietjens
Hi all, i keep getting tis strange error:* WicketMessage: No get method defined for class: class java.lang.String expression: id** Root cause:** org.apache.wicket.WicketRuntimeException: No get method defined for class: class java.lang.String expression: id*** when executing this line: *add(n

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:

Hibernate + HTML-Table

2008-10-09 Thread Björn-Peter Tietjens
Hey there, I want to execute a simple sql-count-query with a "group by" statement and display the result in a html-table... something like: session = HibernateUtil.getSessionFactory().getCurrentSession(); session.beginTransaction(); String SQL_QUERY = "SELECT C

more than one html file accessible

2008-09-30 Thread Björn-Peter Tietjens
Hi, i am absolutly new to wicket... i did the quickstart, and even got an app running including a form and hibernate access to mysql saving the filled in data with it... ...but... At the moment I have exactly one "HomePage.html" alongside the "HomePage.java" in my app and the config bit in t