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.

learn more… | top users | synonyms

2
votes
1answer
27 views

How to dynamically add a hyperlink (BookmarkablePageLink) to DefaultDataTable that is rendered as an anchor

I have a DefaultDataTable that gets its columns programmatically. The markup is simple: <table wicket:id="dataTable" border="0" cellpadding="1" cellspacing="1" width="90%" /> All ...
0
votes
3answers
49 views

How to select multiple values without ctrl key when select values are loaded dynamically as a function of another select

I am using the 'wicket' framework in my web application. I have two selects like this: <select wicket:id="brands" onchange="applyMultiSelection ();"> <option ...
0
votes
1answer
16 views

Wicket continueToOriginalDestination to pass parameters to original page

When Component:continueToOriginalDestination() is called, is there a way to pass parameters to the original destination Wicket redirects to?
1
vote
0answers
37 views

Setting value from cookies to TextField<Long> in Wicket

I face following problem: I have wicket page with filter. Filter is the form component which contains this TextField: TextField<Long> categoryField = new TextField<Long>("categoryId", ...
0
votes
2answers
48 views

Refer to one property from another?

In Wicket, is it possible to have the value of one property reference another property? For example, if I had a property like <entry key="site.name">My Site</entry>, is there any way for ...
0
votes
1answer
31 views

Change f5 to Ctrl-f5 in a Java wicket application with Javascript

In my Wicket application I have a page refresh problem. If a user clicks on f5 on certain pages, the application will act unexpectedly. Most object are refreshed to their original status. For ...
0
votes
1answer
36 views

spring securit3.x y integration with wicket 6.7.0

I am new to wicket and SpringSecurity. I configured the spring security as follows. <http create-session="never" auto-config="true"> <remember-me /> <http-basic /> ...
0
votes
1answer
46 views

Spring managed object always null. wicket framework

today I have had an infuriating problem as follows: I have a wicket based application where I am using spring to manage the objects connecting the application to the database, in the past this has ...
0
votes
2answers
59 views

Wicket search form using loadable detachable model, null pointer

so a little about the project: basically been trying to get a search function working to update a listview which I have done before and had no problem; until now. I cannot seem to find the issue, here ...
0
votes
1answer
42 views

How to inegrate CAS authentication with Apache wicket application?

I am working on a project where I have to integrate CAS authentication into an Apache Wicket application. Though I am still a beginner in web-development, I know how to implement CAS authentication ...
0
votes
0answers
56 views

Wicket listview within a listview

I am pretty new to Wicket so I'm probably making a horrible mistake here. I am trying to add a listview to a listview but I receive an error, I know that this error has to do with the hierarchy of ...
0
votes
1answer
51 views

Unknown tag name with Wicket namespace

I use Wicket 6.7.0 and I get the following exception at runtime: Last cause: Unknown tag name with Wicket namespace: 'panel'. Might be you haven't installed the appropriate resolver? '' (line 3, ...
0
votes
1answer
83 views

Wicket 6 / Ajax: Call Java component from JavaScript and retreive value

I am trying to call a Wicket component's method from JavaScript and receive a value from this method which I want to use in the remaining bit of the JavaScript function which I used to call the ...
0
votes
0answers
54 views

wicket unit testing : strange behaviour of startPage(Page page) and startPage(Class<Page> pageClass)

I got some strange behaviour of my unit tests. My simple Page looks like: public class RegistrationPage extends BasePage { public RegistrationPage(IModel<Service> model) { ...
1
vote
1answer
74 views

Mounted mapper with named parameters also receives requests for image

In my application I mount following URL: this.mountPage("/details/${site}", MerchantDetailPage.class); So a request to for instance ../details/anything will create an instance of MerchantDetailPage ...
0
votes
1answer
88 views

HTTP Status 404 - hello world wicket

i'm create project for wicket example hello world, and i'm run to application but display page show HTTP Status 404 - and description : The requested resource () is not available. this my source ...
1
vote
1answer
51 views

Apache Wicket: Concurrency and restriction to Serializable

I am currently writing on an application which requires me to compute something which will take some time to complete. Therefore, I am doing this computation in the background. I now implemented a ...
0
votes
1answer
45 views

Wicket 1.4 => 6.7 replacing AjaxButton: getAjaxCallDecorator

I was asked to upgrade one of our existing applications, and I am having a bit of trouble figuring out how to update some of our classes. We have our own CustomAjaxButton class which extends ...
0
votes
0answers
33 views

wicket junit test : Unable to create page from class … Class does not have a visible default contructor

following error: Unable to create page from class .... Class does not have a visible default contructor. Class under test: public RegistrationPage(IModel<Service> model) { add(new ...
0
votes
1answer
37 views

Is there any nice authentication solution for Wicket?

Is there any nice authentication solution for Apache Wicket? I mean something rather complete with registration form, login form, remember me, lost password, email confirmation/activation etc. ? I ...
-2
votes
0answers
65 views

Retrieve a value of textField and set the property of the Model

I'm trying to implement a ListView and on a column of it I added a listView, for each line, I want to save the data inserted on it and update the model. For this purpose I'm implemented the code ...
0
votes
1answer
44 views

How to generated web tier using Wicket with existing dao tier

I have created dao tier in my application. Now I want to generated web tier with basic crud operations in wicket. I read that apache ISIS can do this: http://isis.apache.org/. I successfully download ...
-2
votes
1answer
76 views

excel-like data import wizard for java/jquery [closed]

Are you aware of any “out of the box” import wizard for java/jquery. We are using apache Wicket (6.x) as well as JQuery / JQuery UI for our project. Now we require to build an online data import. ...
0
votes
0answers
24 views

Integrating jforum with wicket

I am looking for a way to implement a forum on my website. My website is written in Wicket (6.6), with Spring/Hibernate on the backend and Apache Shiro as its security layer. As far as I was able to ...
0
votes
4answers
62 views

Wicket RepeatingView refresh / rerender ? Possibilities? [List items missing]

I got a little problem with my wicket application. The problem is on a page called OverviewPage, here are some panels like the ListPanel, in which my RepeatingView is. This RepeatingView (List) got ...
0
votes
1answer
29 views

Wicket: Remember last user entry of a form component within a session

I am working on a small web application in Wicket with the following requirement: If a user enters several values into a small form, sends this form and returns to this very same form later on, the ...
0
votes
2answers
35 views

What model should be returned from IDataProvider.model()

Given the IDataProvider public interface IDataProvider<T> extends IDetachable { IModel<T> model(T object); } What model should I return here? In the javadoc there is written: ...
0
votes
0answers
47 views

Wicket AJAX Table row addition not working

I have got some code, written by someone else. The situation is that there is a table on the page, which initially has one row. There is an Add Row button that adds a row to the table. Till now it was ...
0
votes
1answer
42 views

Keep the state or value of a DropDownChoice and TextField both inside a ListView

I have implemented a listView and every time that a new item is added in this ListView the values inserted in the textField and selected in a DropDownChoice are lost. The following pictures show ...
0
votes
1answer
44 views

Wicket - get the value of a textbox filled using scala

I'm trying to retrieve a value of a TextField as is showed bellow: item.add(new TextField("description", new Model[String]() { override def getObject(): String = { customer.description = ...
0
votes
1answer
66 views

Wicket - get the selected item in the DropDownChoice using Scala

How can I get the selected item form a DropDownChoice inside an ListView? I implemented the chunky code bellow: val listCustomer: java.util.List[Customer] = customerDAO.listCustomers item.add(new ...
0
votes
0answers
24 views

Wicket SelectOptions (optGroups) doesn't update its model [duplicate]

i already have an issue in this topic here: Wicket select doesnt update its model so it's probably a duplication, but i made a small test project with my exact code, to help you to help me. Base ...
-1
votes
1answer
65 views

Some examples or sources for apache wicket with scala?

Someone know sources, projects, tutorials or books that cover apache wicket with scala?
-1
votes
0answers
38 views

Wicket MarkupContainer error, the component failed to render

I need to add components in a listView and associate all of them with a model,for allow keep the state of each object saved in this listView. I'm using wicket 1.4 with scala. The code is showed ...
0
votes
2answers
66 views

Wicket SELECT doesn't update it's model

i've wicket panel with list of ProductViews (as SELECT) after you choose your ProductView from SELECT, its load Product from database by id of ProductView into details form. You can modify Product ...
0
votes
2answers
89 views

FileNotFoundException with multifile upload in Wicket

We are using Wicket 6+ and have a strange error on FileUpload.writeTo(file). It's happening only to certain types of files (docx,xlsx,java) and only in one form. The same exact code works to attach ...
0
votes
1answer
39 views

OutofMemoryException while using Wicket DataTable

I have a simple wicket application which displays 4-5 data table in a page.The data provider is quite huge here.It has probably millions of data in it.I am displaying these data using data table. The ...
-2
votes
1answer
46 views

Pagination is not working in ehour 1.2 [closed]

Pagination is not working in ehour1.2 when i click on next page. Here is the link http://www.ehour.nl/forum/viewtopic.php?f=2&t=40529#p41972 Pagination is not working in ehour1.2 when i click ...
0
votes
1answer
51 views

Return list of checked checkboxes from Javascript to Wicket

I am trying to make a filter for a searchfield where a number of checkboxes can be checked to choose what people want to search. I am currently trying to do this with the CheckGroup component but as I ...
0
votes
1answer
33 views

SSLHandshakeException dynamic web project java

In my Wicket application I would like to send data to a wsdl-endpoint with soap. To accomplish this, I made a dynamic web project in Eclipse (with Axis2). I get an error while connecting to the ...
1
vote
1answer
66 views

Wicket implementation of bootstrap-wysiwyg

Im trying to figure out how to create a wicket component wicket could represent a div that is then used by the Bootstrap-wyiswyg javascript. Once the page is submitted i want to be able to get the ...
0
votes
1answer
29 views

NoClassDefFoundError XmlSchema with IVY dependency

In my Java Wicket application with Apache Ivy and JBoss I'm using a dynamic web project (Axis2). On the method populateAxisService() throws org.apache.axis2.AxisFault I get the following error: ...
0
votes
1answer
36 views

Image resources in css files

There is a library containing package x.y.z.images where are stored some useful images. My application contains this library in WEB-INF/lib as usual. I would like to know (if it's possible at all) ...
0
votes
2answers
35 views

DropDownChoice gets duplicate choices

i have an issue with a DropDownChoice (the DDC) component. The situation is as following: I want to create a simple registry page for a contest. So i need a team with participants. I have created a ...
-1
votes
0answers
70 views

How to best integrate JQuery with Wicket?

I have started developing in Wicket. I have searched and found that to integrate JQuery with Wicket I have several options: Since wicket v6.0 it is integrated internally !? 7thWeb ...
0
votes
0answers
48 views

Wicket - Image with ContextRelativeResource

I have a simple problem with Image and ContextRelativeResource. I have a DataTable and a cell with an overwritten popupateItem: item.add(new ImgPanel(componentId, new ...
0
votes
2answers
51 views

wicket - adding tabs dynamicly without rendering all tabs

I would like to create tab panel where the tabs are created dynamically in wicket and by doing it in a list of tabs where every time I create tab , I want only this tab to be rendered , and not ...
0
votes
2answers
157 views

Wicket and AJAX : Upload file to server and show it on page

My web application is running on tomcat6 and I'm using Wicket to develop it. What I'm trying to do is to upload image file to the server and display it on web page as soon as it will be uploaded. I'm ...
0
votes
3answers
86 views

Session time out with Wicket

Recently Wicket put me in another problem of Session out. In normal web application what we do is simply declare session-timeout in web. xml and it works fine for us. But in wicket specifying session ...
1
vote
1answer
68 views

How to refresh dynamic contents in Wicket when you press F5?

I've implemented a MatchPage which displays the following informations: MatchStatus (OPEN/CLOSED) Winner (Name of the Winner) Form to upload files (follow the link to see how it looks like, [1]: ...

1 2 3 4 5 36