Top "Wicket" questions

Apache Wicket, commonly referred to as Wicket, is a lightweight component-based web application framework for the Java programming language conceptually similar to JavaServer Faces and Tapestry.

GWT vs Apache Wicket

Both GWT and Wicket are stateful, java object oriented based. GWT is completely client based with features like javascript optimization, …

apache gwt architecture wicket
How to get the URL to a Wicket shared resource?

The web designer has given me HTML which looks like: <div .... style="background: transparent url(xxx.png) 170px center …

wicket
How to get the AjaxRequestTarget inside Wicket's onBeforeRender() method of a component?

I have an Ajax event that triggers the redraw of various Wicket panels. Some panels have additional calculations of their …

wicket wicket-1.6
Why does Wicket changes the id of the html elements?

If I write <form wicket:id="form" id="form> or even <form wicket:id="form>... Then …

html wicket identifier
In the Wicket DropDownChoice how can you replace "Choose one" to another text

I have a DropDownChoice like below: final DropDownChoice<Term> terms = new DropDownChoice("terms", new Model<Term>(), …

wicket default-value dropdownchoice
Wicket - AjaxFormComponentUpdatingBehavior and backspace

I have a TextField where I have added an AjaxFormComponentUpdatingBehavior to get the current value when user write some string. …

java ajax wicket onkeyup backspace
Vaadin alternative for heavily loaded UI

Currently I am programming the Web Application based on Vaadin. I am quite happy with the learning cycle and the …

gwt wicket vaadin web-frameworks echo2
Wicket & CSS resources

I've been looking around and I can't find a dummy's guide to adding my own CSS to a Wicket website …

java css wicket
Get a specific Wicket Component within a Page

What's the way to find a specific (known wicket id) Wicket Component within a Page regarding less effort performance?

wicket wicket-1.5
How to call jquery function after calling wicket ajax submit button

I have a form with a submit button but this is implemented by Wicket's AjaxButton class. When the HTML page …

java javascript jquery wicket