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 6 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.6]
155 questions
0
votes
1 answer
Wicket 6.1 AjaxEventBehavior and form components with Models
final Address address = new Addres();
Form form = new Form("addressInputForm");
this.add(form);
form.setOutputMarkupId(true);
FormComponent fc;
fc = new RequiredTextField("street", new AddressModel(new Model(address),…

st6mm
- 239
- 2
- 14
-1
votes
1 answer
How to use getHeaderContribution() in wicket 6.x or 7.x?
I have code like below,
add(CssPackageResource.getHeaderContribution("css/$/styles.css?v=1.1".replace("$", reqLocale)));
I am trying to upgrade it into 6.x , but am unable to use getHeaderContribution() method,
Can you suggest me how can I…

S.P. ROOPESH
- 65
- 11
-2
votes
1 answer
how to use setModelValue(); in wicket 6. x or 7.x?
In wicket 1.4.9 setModelValue("") was accepting string as a parameter, but in 1.5 it need String Array,
I have code as shown below, anybody knows how to modify setModelValue("") to 6.x or 7.x.
if (!onlineVerfStatus) {
TextField captcha =…
-2
votes
1 answer
Java printDialog() when deployed on linux machine not working(no popup)
I am using Apache wicket 6.19.0, pdfbox 1.8.8, and Java 8.
The problem I am facing is I get the print dialog on screen when I deploy my application on a Windows machine, but when deployed on the Linux server it doesn't show the print dialog on…

avinash chavan
- 729
- 2
- 11
- 27
-5
votes
1 answer
Set application state in iframe only
Ok, what I'm trying to do is come up with a way to apply certain application settings (CSS to be exact) but only within an iframed version of the app.
If you've used Wordpress, I'm basically trying to implement a version of the theme live preview…

Phil
- 157,677
- 23
- 242
- 245