wicket Questions

4

Solved

How can I install the Wicket framework? Please guide me!
Tedie asked 14/2, 2011 at 16:44

3

Solved

Can you recommend a template engine for GAE? I like Wicket, but it carries a lot of server-side state, which is something that is not very compatible with the GAE approach. Is FreeMarker sup...
Sisley asked 9/11, 2010 at 18:47

3

Solved

I'm working on a large Java application that uses Wicket 1.5 together with Hibernate / JPA 2. Wicket has a standard rule that objects stored in the session must implement Serializable. We have an e...
Rang asked 30/11, 2011 at 8:54

2

Solved

I'm having trouble adding components to a form dynamically. What I'm trying to do is: Give the user a drop-down list with items they can choose like name, age, ... When a user presses add: there co...
Unsparing asked 16/11, 2012 at 15:23

3

Solved

I saw that there are two ways to set a responsePage in Wicket's WebPage: setResponsePage(new MyPage()); or setResponsePage(MyPage.class); What are the differences between these two?
Carbine asked 13/1, 2012 at 10:46

4

Solved

What are the advantages and dis­advantages of frameworks Lift, Play and Wicket? What characteristics are best or only supported by each? Thanks
Melamie asked 17/10, 2010 at 16:22

3

Solved

AjaxEventBehavior behavior = new AjaxEventBehavior("keyup"){ @Override protected void onEvent(AjaxRequestTarget target) { System.out.println("Hello world!"); } }; form.add(behavior); In p...
Ordinarily asked 16/10, 2012 at 10:27

2

I am trying to make a wicket link appear as an image instead of text. I am creating an external link and then placing it on the page. add(new ExternalLink("link", url, "Page name")); <a wicket:...
Mahatma asked 18/6, 2010 at 14:32

3

Solved

I've read about wicket:message here, but can't seem to make it do everything I'd like. Say I have a HTML page with <wicket:message key="text"/> and a properties file containing text=Blah bl...
Cicero asked 8/12, 2010 at 12:8

1

Solved

the wicket internationalization example available has the following file structure HomePage.java HomePage.html HomePage.properties WicketApplication.java HomePage_nl.properties Now when creating...
Refractometer asked 21/9, 2012 at 6:43

11

Solved

I'm debating whether to use Seam, Wicket, JSF or GWT as the foundation for my presentation layer in a Java project. I narrowed my selection of Java web frameworks down to this subset based ...
Loris asked 13/4, 2009 at 19:14

2

Solved

in my current project i've faced a problem of customizing IndicatingAjaxLink in wicket, is there any solution to change standart gif image to my own? For example we have following listeneer add(...
Technetium asked 2/8, 2012 at 8:41

2

I am working on a Wicket-based web app on Java EE. I am trying to find a way to ensure that any entities used as model objects are always attached to the current EntityManager before Wicket tries ...
Oliverolivera asked 15/8, 2011 at 20:45

1

I have a web page that allows a user to upload files using multipart/form data (i.e. with an input type="file" tag). However, here is a web content security filter in my way which is effectively bl...
Vacant asked 25/6, 2012 at 9:19

1

Possible Duplicate: How can you encode to Base64 using Javascript? I have a web application based on Java, Wicket and JQuery which has a function to enable users to upload files (imag...
Heidelberg asked 22/6, 2012 at 3:50

1

Solved

Is it possible to make the entire row of a Wicket DataTable clickable ? if so, how ? I've seen examples of how to make a cell clickable by extending the PropertyColumn class, which is fairly easy b...
Latticework asked 29/5, 2012 at 9:23

2

Solved

I could not find a wicket tag like wicket:include? Can anyone suggest me anything? I want to include/inject raw source into html files? If there is no such utility, any suggestions to develop it? ...
Primaveria asked 17/5, 2012 at 11:10

2

Solved

I am building a Wicket web application which is going to have to handle a lot of simultaneous requests. I've setup a test environment and some jmeter scripts to do load testing and I notice I can r...
Cither asked 14/5, 2012 at 11:38

3

I'm looking to render a <select> tag in my page using wicket, but group the options with <optgroup>, this was discussed on Separator in a Wicket DropDownChoice, but in the solutions the...
Francoise asked 15/12, 2011 at 14:4

1

Solved

Does Wicket somehow allow passing both of the following kinds of params in a PageParameters object? Apparently not? accountId which is shown in the URL (/account/<ID>) infoMessage parameter...
Hebbe asked 17/4, 2012 at 10:35

1

Solved

I'd like to know something about wicket supporting models with generic. I understood the models, prop model, and prop compound model. But what about the Model class? What happen if I do this: Lab...
Jannette asked 12/4, 2012 at 3:16

6

Solved

I am using Wicket with the Wicket Auth Project for my presentation layer and I have therefore integrated it with Spring Security. This is the method which is called by Wicket for authentication for...
Maggio asked 18/6, 2009 at 14:40

1

Solved

I am trying to implement Breadcrumb Navigation on a WebPage that exchanges a content Panel via ajax. It ends up looking like this: Home >> Page >> Panel Here is my page code: public...
Glycol asked 12/3, 2012 at 11:7

3

Solved

What is to correct way in Wicket 1.5 to obtain URL to a page instance? In Wicket 1.4.x this worked: MyPage page = new MyPage(some, parameters); getRequestCycle().urlFor(page).toString() A bunc...
Leverett asked 6/3, 2012 at 8:17

1

Solved

It seems like every time I learn a new platform, I have to re-solve this same old problem: Update the choices in one drop down upon change of another dropdown, using Ajax. This time the framework i...
Kairouan asked 27/2, 2012 at 15:57

© 2022 - 2024 — McMap. All rights reserved.