Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
1 vote
1 answer
127 views

Wicket - Best way to implement complex components

I've started an application wit a lot of forms in with Wicket so I'm looking for how to write components well, reusable and mainly, easy to maintain. Reading best practices from the guide it says to ...
tomrlh's user avatar
  • 1,066
0 votes
3 answers
470 views

Wicket - Reusable panels with java-subclasses

I have a java class: public Task { private int id; private Company sender; private Company receiver; //Getter and Setter ... } As you can see, I ...
David Sonnenfeld's user avatar
7 votes
2 answers
6k views

Wicket - Reusable panels with java inheritance

I have following java classes: I have a two form components which are mapped to Type1Task and Type2Task with a CompoundPropertyModel: Problem: Duplicate Code. I want the D and E Fields to map to a ...
David Sonnenfeld's user avatar