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. This tag is specific for wicket 1.5 since many changes have been done to the API in this version in a way that questions need to be answered in a different way for this version.
Questions tagged [wicket-1.5]
238 questions
3
votes
1 answer
Wicket create image from file system outside web application directory
I have a repository storing many images somewhere on the server.
I want to be able to create a dynamic Image object with one of the images stored in my repository.
I am using wicket 1.5.7. I saw this example somewhere
1) Created the FileResource…

code_fish
- 3,381
- 5
- 47
- 90
3
votes
2 answers
submiting a form by pressing an enter key
I want to submit a form by pressing enter key. Wicket allows to do that till any button is attached to form and is visible.
Is there any way in wicket freamwork to submit a form by simple pressing an enter key?
enter works:
Form> searchForm = new…

speedingdeer
- 1,236
- 2
- 16
- 26
3
votes
1 answer
Force page expiration in wicket 1.5.8
I'm trying to expire all previous versions of a given page with Wicket 1.5.8. In wicket 1.4, it was done by getPage().getPageMap().clear(). Now in wicket 1.5, page map is gone, and I can't figure out how to dot that.
My use case is that I have a…

Gorkk
- 1,047
- 11
- 25
3
votes
2 answers
Wicket appending weird number
I've figured a weird issue with Wicket 1.5.x. All of the sudden, wicket started to append a number that increases to every url which looks like mydomain.com/home?1. For every Bookmarkable link I click, wicket sends a redirect to the browser…

anderswelt
- 1,482
- 1
- 12
- 23
2
votes
2 answers
wicket: parameterize resourceproperty keys loaded with wicket:message
I need to dynamically change the loaded keys through a parameter. Imagine there yould be 2 properties like
value1
value2
loading these based on the…

Mar Cel
- 420
- 3
- 12
2
votes
3 answers
Can I use RE-Captcha with Wicket?
Can I use recaptcha with apache wicket 1.5.3? Is there some good example?
user1096311
2
votes
1 answer
Page limitation AjaxPagingNavigator?
When using the wicket paging support for DataView. -> AjaxPagingNavigator
How is it possible to limit the number of pages?
For example :
First Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 Next Last
Should be limited to 10 pages max...…

Koen
- 31
- 3
2
votes
1 answer
How to redirect to another page while keeping the original url?
In my Wicket 1.5 web application, I want to redirect to another bookmarkable page, whilst the URL of the originating page should remain.
@MountPath(value="page1")
public class WebPage1 extends WebPage {
public WebPage1() {
...
…

Andreas Krueger
- 1,497
- 13
- 16
2
votes
1 answer
Processing a ListView inside a form
Please consider the following signup:
2
votes
1 answer
Wicket 1.5 Servlet API dependency
We now migrating some ancient project from Wicket 1.3.5 to some newer versions. With version 1.4.23 everything was more or less clear. The trouble appears when we started migration to 1.5.16. Finally I've created simple test-application to tear-down…

EtherealDeath
- 23
- 6
2
votes
1 answer
How to replace PageParameters constructor (String) in Wicket 6?
I'm doing a migration from wicket 1.4 -> 1.5 -> 6. When I was upgrading to 6 I encounter the following compile error:
The constructor PageParameters(String) is undefined
When I looked into the sources of Wicket 1.4, I noticed that this constructor…

lukaszrys
- 1,656
- 4
- 19
- 33
2
votes
1 answer
How to Create a dependable palette in Wicket
I have created a palette in wicket and I'm able to populate the palette left side window. But I want to make the options in the palette are dynamic, able to do the same. But the problem is that the palette is not getting populate with selected…

user1665207
- 61
- 1
- 6
2
votes
1 answer
Apache Wicket : Update value of the Label after the Button has been pressed
I have started to learn Apache Wicket web framework and I was having a bit of difficulty doing a task.
If you can see from the attached image , I went to http://www.wicket-library.com/wicket-examples-6.0.x/echo/ ,
to try out this basic input form…

Muhammad Shahab
- 4,187
- 4
- 34
- 44
2
votes
1 answer
wicket :how to combine CompoundPropertyModel and LoadableDetachableModel
I want to achieve two goals:
I want my model to be loaded every time from the DB when it's in a life-cycle (for every request there will be just one request to the DB)
I want my model to be attached dynamically to the page and that wicket will do…

yoav.str
- 1,547
- 6
- 33
- 73
2
votes
1 answer
Wicket Clean URLS
How can I build clean URLS in wicket. It's a wicket 1.5.7 project, that is being ported to wicket 6. But since I have no experience with Wicket I don't know how to clean the URLS.
My URL looks like…

Nick N.
- 12,902
- 7
- 57
- 75