Re: wicket 6 form example?

2013-01-07 Thread Andy Van Den Heuvel
7, 2013 at 1:30 PM, Andy Van Den Heuvel andy.vandenheu...@gmail.com wrote: I'm new to Wicket and I'm searching for good examples using wicket 6/jQuery based examples for forms. Basically I need to create a form with inline ajax validation. I mean: when I leave a textfield only

Re: documentation

2013-01-23 Thread Andy Van Den Heuvel
Projects like Springframework use docbook. It's really nice, You put all documentation in xml files which are in the scm and when you release it, you have documentation per release. On Wed, Jan 23, 2013 at 12:26 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, On Wed, Jan 23, 2013 at

Unknown tag name with Wicket namespace: 'panel'

2013-05-13 Thread Andy Van Den Heuvel
I get an exception and it's not very clear to me what I'm doing wrong. This is the exception: Last cause: Unknown tag name with Wicket namespace: 'panel'. Might be you haven't installed the appropriate resolver? 'wicket:panel' (line 3, column 2) I'm trying to override the markupSourcingStrategy

Re: Unknown tag name with Wicket namespace: 'panel'

2013-05-13 Thread Andy Van Den Heuvel
at: http://wicket.apache.org/learn/books/ ~ Thank you, Paul Bors -Original Message- From: Andy Van Den Heuvel [mailto:andy.vandenheu...@gmail.com] Sent: Monday, May 13, 2013 2:04 PM To: users@wicket.apache.org Subject: Unknown tag name with Wicket namespace: 'panel

dynamic form (with list + add/remove)

2013-05-24 Thread Andy Van Den Heuvel
Hey, I was looking for a good example for creating a dynamic form with a list and add/remove functionality. I looked at the ListView, but this article from Martijn's blog tells to use a RepeatingView http://wicketinaction.com/2008/10/building-a-listeditor-form-component/ this article is from

java.util.Properties as Form Model

2013-10-18 Thread Andy Van Den Heuvel
Hey, I'm trying to create a form with a CompoundPropertyModel to fill a java.util.Properties object dynamically. FormProperties form = new Form(form, new CompoundPropertyModel(properties)); form.add(new TextFieldString(host)); form.add(new TextFieldString(port)); This works correct when I start

Re: java.util.Properties as Form Model

2013-10-18 Thread Andy Van Den Heuvel
probably test whether the Map is a Hashtable and call remove() since Hashtable is documented to throw an NPE when put() is called with a null value. On Fri, Oct 18, 2013 at 1:55 PM, Andy Van Den Heuvel andy.vandenheu...@gmail.com wrote: Hey, I'm trying to create a form