How to do "google like" paging in Wicket? You only show links to 10 first search result pages, then when I click page 10, additional 10 more pages are added to search results etc.
I have a typical search form and list of search results. There are possibly many search result pages.
Typically only the first few search result pages are in...
I am currently evaluating wicket for the use of a rich intranet application, and I am very curious if there are big projects/websites which take the use of the apache wicket framework?
There are only a few mentioned on the wicket homepage.
(Beside that, I am only aware of a big german publisher for scientific literature which uses wicke...
I'm currently rebuilding an existing PHP application using Java. I therefore have an existing frontend GUI and an existing database schema that I'm working with.
Here is the technology stack I'm working towards:
jQuery, client-side
Wicket, front-end
Spring, ???
Hibernate, ORM
MySQL, database
Before reading about Spring in both Wicke...
Hi,
I'm looking for an easy-to-use and intergrate ORM for Wicket application. I was thinking about Hibernate. Is it a good choice? What are the possible problems with Wicket/Hibernate? Any other suggestions are welcome. Thanks for any help.
...
Hi,
The following seems to be a bug with JRockit or Weblogic, but maybe
someone on this list has seen it before and has a better
workaround/solution.
We have been developing a Wicket application for a government agency
that is going to be used by 15k users. The application will be
deployed on a Weblogic cluster running on JRockit and Red...
I have a project on Eclipse, Wicket, Spring, Hibernate. Every thing works normaly except : when I try
public class SortableContactDataProvider extends SortableDataProvider<User>
{
@SpringBean
private Service service;
public Iterator<User> iterator(int first, int count)
{
//SortParam sp = getSort();
retur...
Hi all,
I am a C/C++ programmer with moderate experience in desktop application. (no web development).
now I would like to move to web development.
and I am considering Java and Wicket framework.
but since Java is a vast language.
Could you please guide me where to start learning Java. I mean what feature i should learn first. like...
I'm playing with wicket's form input components. I tried to put an enum to a DropDownMenu:
public enum Choice { ONE, TWO, THREE }
cz.oz.wicket.pages.form.FormPage.java
--------------
.add( new DropDownChoice("choice",
Arrays.asList( Choice.values() ), new EnumChoiceRenderer() )
)
and added a properties file:
cz.oz.wi...
Note: This relates to a previous question.
I have a Wicket page that has a form with some complex client-side interactions that I decided to use jQuery for instead of Wicket (long discussion, I know). Essentially I'm just building a JSON object, submitting it via AJAX, and performing some action on completion. The call works fine in Fir...
Given the various advantages of the Scala language I have decided to write my next web-application in Scala. However, should I be using Wicket or Lift? I am familiar with Wicket, a like it quite a bit, but know very little about Lift. Is learning Lift worth the effort in this context?
In order words, how does Lift compare to Wicket? Giv...
I created a link with static text. That works fine but now I also want to change the text when you click the link.
I got as far as this:
add(new Link("doAnything") {
@Override
public void onClick() {
// change the text!
// this.modelChanging();
// this.detach();
}
});
I hope you can giv...
Hi. I was C++ WinForms developer and then I swiched to Java Swing. Now I need to do web application, but I have strong background of GUI development so I want to put it in use. So I was looking for some nice Java-based frameworks, and two of them appear to be the thing what I am searching for :
Apache Wicket
Google Web Toolkit
Here a...
When I click on link 1 and then, before the response was received, click on link 2 on the same page, I get a "Page Expired" error from Wicket. Is Wicket conceptional capable to do such a concurrent processing?
Any ideas why Wicket loses the session (it seems to reside on tomcat though)?
...
Hi,
I have a Spring based Wicket app.
There's a pooled datasource bean.
Now, when MySQL is dead, I get a default Wicket error page with a stacktrace.
I'd like to handle this situation and to only allow some pages to fully display (the static ones), and to show a custom error page for the others.
How should I efficiently implement thi...
Can you recommend a simple/best tool for an web application developed using Wicket framework?
The challenge is interface id is changed every time so record and playback may not work. This link explains some work around but it is not simple to implement.
...
My project is under eclipse, Tomcat, Spring, Hibernate. In my web app when I try go to enother webPage :
public void onSubmit()
{
String value="Д";
PageParameters pars=new PageParameters();
pars.add("strname", value);
setResponsePage(FilterClient....
Hi,
I'm writing an application using Wicket/Hibernate and I need to support many languages. How to make good internationalization of user data in a PostgreSQL database? Thanks for any help/suggestions.
...
I am using Wicket 1.4.9 + Spring 3 + iBatis. I want to get session data before used transactional but I have a big problem because this data put on Wicket web session(this data choose on login page).
I am using spring aop for point cut but I cannot point cut session per client. How to solve this problem.
User Class Entity
package com...
Hello.
I'm working on a Java Web Application with Wicket, Spring and Hibernate. The web application is not particularily large (I have one DAO and one service), but I'd like to offer the users that deploy the application a startup wizard much like the ones found in Wordpress.
When the webpage is accessed for the first time (no database...
I'm pretty new to wicket and I'm trying to create a simple wicket tree that holds information about mailinglists. This mailinglist is related to a certain letter.
MailingListDto 1
User 1
User 2
MailingListDto 2
User 3
User 4
If we are editing an existing letter, the mailinglists related to that letter are fetched into mailingList...