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. It uses no XML configuration, and POJO Java components are bound to HTML fragments by tags and naming ...
1
vote
3answers
886 views
Vaadin alternative for heavily loaded UI
Currently I am programming the Web Application based on Vaadin. I am quite happy with the learning cycle and the way how easy UI can be designed.
In general pluses of Vaadin are:
"Native" UI ...
24
votes
3answers
5k views
Frameworks comparation: Lift, Play and Wicket
What are the advantages and disadvantages of frameworks Lift, Play and Wicket? What characteristics are best or only supported by each?
Thanks
16
votes
9answers
19k views
Which framework should I choose - Seam, Wicket, JSF or GWT?
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 on job ...
1
vote
1answer
582 views
AOP or APT for overriding methods from super classes
I have a large library of wicket components that are annotated with a custom annotation @ReferencedResource or another annotation @ReferencedResources, that has a ReferencedResouce[] value() parameter ...
29
votes
9answers
10k views
Difference between Apache Tapestry and Apache Wicket
Apache Wicket ( http://wicket.apache.org/ ) and Apache Tapestry ( http://wicket.apache.org/ ) are both component oriented web frameworks - contrary to action based frameworks like Stripes - by the ...
13
votes
4answers
7k views
Apache Wicket vs Apache Click
What is the difference between Apache Wicket and Apache Click?
Is Apache Click maintained? The latest release seems to be from Nov 2008
Thanks
Achilleas
5
votes
1answer
2k views
JSON formatting (Sending JSON via jQuery AJAX post to Java/Wicket server)
I'm using jQuery to post JSON to a Java server, but I think my JSON must be wrong. Here's an example of my data and how I'm sending it:
var lookup = {
'name': name,
'description': ...
5
votes
1answer
1k views
Using Wicket AbstractAjaxBehavior with jQuery.ajax()
I have used the jQuery AJax call to send JSON as documented here in StackOverflow
The problem is that I am not receiving any Data on the server . I can see that the call did reach the target ajax ...
4
votes
2answers
1k views
Using <wicket:message> tag to produce partially formatted text
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 blah: ...
3
votes
5answers
583 views
Wicket and complex Ajax scenarios
When a screen has multiple interacting Ajax controls and you want to control the visibility of components to react to these controls (so that you only display what makes sense in any given situation), ...
2
votes
5answers
3k views
GWT vs Apache Wicket
Both GWT and Wicket are stateful, java object oriented based. GWT is completely client based with features like javascript optimization, CSS optimization, and I'm pretty new to Apache Wicket.
The ...
2
votes
3answers
1k views
Wicket vs GWT - Advice needed
I am developing a Java EE based web application. We have a very limited time to come up with a alpha version and trying to decide on a web framework to use. It has to be something easy to learn but ...
1
vote
4answers
189 views
java framework that will not replace javascript
I am planning to write a medium scale web application. The server side technologies will include Java, Hibernate, MySQL and the client technologies will include Html, CSS, Javascript and Jquery.
I ...
1
vote
2answers
346 views
Components not reloading on url change in Wicket 1.5(.2)?
I navigate to my application the first time with following URL:
.../homepage/?0&user=x
In debug mode I see wicket is nicely instantiating my panels and such (obviously).
if I change the URL ...
0
votes
2answers
206 views
How to use a single transaction for a Wicket / Spring page view?
My previous question How to wrap Wicket page rendering in a Spring / Hibernate transaction? has led me to thinking about transaction demarcation in Wicket.
Whilst the example there was easily solved ...
0
votes
5answers
177 views
jquery not proceeding to next page
i have jquery, but it is not going to next page, it always display images and waits, never proceed to next page.
HTML code:
<div id="toHide" class="pb-text-align-center">
<img ...
16
votes
3answers
3k views
For my next project, a web-app, should use scala+wicket or scala+lift?
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, and like it quite a ...
23
votes
4answers
6k views
wicket vs Vaadin
Am torn between wicket and vaadin. i am starting a micro-isv and need to make a choice of web framework. I have narrowed down my choices to wicket and vaadin. I have used both frameworks and i love ...
6
votes
3answers
9k views
Wicket Dynamic Image URL
Short question:
I need to turn a dynamic image pulled from a database into a URL without adding a component to the displaying page (such as using a NonCachingImage) using Wicket.
The perfect solution ...
8
votes
8answers
3k views
Now with GWT 2, what are the advantages over wicket and likewise?
Apart from the argument of Wicket's simplicity (that is, Wicket is a simpler system IMHO) and GWT's responsiveness in the client (GWT's client side state and JavaScript - potentially complex client ...
7
votes
6answers
2k views
Does it make sense to use Google Web Toolkit (GWT) as a full-blown Java web framework?
I am interested in the possibility that GWT could serve as the basis for my entire presentation layer.
I would be interested to know if anyone has tried this successfully - or unsuccessfully - and ...
5
votes
5answers
864 views
Object equality in context of hibernate / webapp
How do you handle object equality for java objects managed by hibernate? In the 'hibernate in action' book they say that one should favor business keys over surrogate keys.
Most of the time, i do not ...
3
votes
1answer
863 views
using AutoCompleteTextField in wicket without String as the generic type
This question follows this: handling to onchange event of AutoCompleteTextField in wicket
I'm trying to use the AutoCompleteTextField with a custom class as the generic type, and to add an ...
3
votes
5answers
2k views
Stateless Apache Wicket stateless pages/requests
So I was reading another question under the Wicket tag comparing Apache Wicket and Apache Click. A concise explanation, in my opinion. I am more familiar with the Wicket world than the Click world.
...
0
votes
1answer
652 views
Developing web application in eclipse by wicket-hibernate-spring
I want to develop a web application or project in eclipse by wicket-hibernate-spring. I have searched Google for a step-by-step tutorial but I found nothing which can direct me to the right path. I am ...
8
votes
3answers
556 views
delete version number in url
How can I delete or hide the version number in the URL introduced in Wicket 1.5?
Mounting a page doesn't help.
http://localhost/MyPage/SubPage?0
5
votes
3answers
755 views
Separator in a Wicket DropDownChoice
Is there some obvious way to add a separator to the list of options in a Wicket DropDownChoice? In my case I'm populating the selection with two types of domain objects from my datasource. I guess I ...
2
votes
1answer
562 views
Implementing javascript events to Wicket
I'm new to ria-development and working with the Ajax Slider example. I can't figure out how to work with javascript events. Here in the example the onValueChanged-event is preimplemented. How do I ...
2
votes
4answers
743 views
Simple way to use parameterised UI messages in Wicket?
Wicket has a flexible internationalisation system that supports parameterising UI messages in many ways. There are examples e.g. in StringResourceModel javadocs, such as this:
WeatherStation ws = new ...
2
votes
3answers
876 views
What is the best java web application framework that goes well with xml+xslt?
I recently learned a bit about xml/xslt and would like to try it in my web project. What framework would you recommend for that? Basically, I want to generate a dynamic xml that will be applied to ...
1
vote
3answers
192 views
Dynamic <optgroup> support in wicket
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 there ...
11
votes
1answer
8k views
Youtube embed: Unsafe JavaScript attempt to access frame
We have a Wicket app with a page that includes an embedded Youtube video. The video embeds and plays fine, but apparently it causes the rest of the page to not render- it seems that the DOM elements ...
6
votes
3answers
456 views
Generating commented-out content with Wicket
For debug reasons, and on a whim, I'd like to include certain information in a Wicket page's HTML output that is enclosed in HTML comments.
The output would be something like...
<!--
<div ...
3
votes
1answer
1k views
handling to onchange event of AutoCompleteTextField in wicket
I'm writing an autocomplete component for a webapp using Java and Wicket.
Is there a way to handle the onchange event to run some code when the user selects one of the options of the autocomplete ...
3
votes
1answer
338 views
wicket @SpringBean can not create bean
I have a project on Eclipse, Wicket, Spring, Hibernate. Every thing works normaly except : when I try
public class SortableContactDataProvider extends SortableDataProvider<User>
{
...
2
votes
2answers
243 views
Wicket TextField<BigDecimal> which by default shows 4 decimals but allows (easily) editing the exact value
We need to support high precision for certain numbers (interest rates) in an application, but we'd still like to show them rounded to 4 decimal places by default.
So, in a table, some cells contain ...
2
votes
2answers
333 views
Wicket 1.5 Javascript File in Body Tag
I need to put a script-tag inside the body, because the javascript doesn't work in the head tag.
As of Wicket 1.5 the following code is not longer supported:
add(new ...
2
votes
2answers
2k views
How to use Wicket's DownloadLink with a file generated on the fly?
DownloadLink is nice and handy for creating a button/link for downloading a file, along these lines:
add(new DownloadLink("downloadButton", getReportFile(), "report.pdf"));
and
<input ...
2
votes
1answer
605 views
Can you make a TextField<BigDecimal> accept both , and . as decimal separator?
In a Wicket app, I have a decimal number text field:
TextField<BigDecimal> f =
new TextField<BigDecimal>("f", new PropertyModel<BigDecimal>(model, "share"));
I want it to ...
2
votes
2answers
1k views
How can I create a Wicket URL that hides its parameters?
I'm currently creating a set of links with code like this:
BookmarkablePageLink<CheeseMain> havarti =
new BookmarkablePageLink<CheeseMain>("havarti", CheeseMain.class);
...
2
votes
2answers
2k views
How to convert Ant project to Maven project
How to convert a Ant project to Maven project? A sample project that would link (a Wicket project)
Thanks
1
vote
2answers
357 views
Spinner component in Wicket?
Where can I find a spinner component for Wicket?, including Maven repo and a source code example?
1
vote
3answers
421 views
How can I load images dynamically and quickly in Wicket?
I am trying to load a lot of images at the same time, dynamically, using a Wicket WebResource. The problem is that it takes a lot of time to load them, and in some cases it takes more than a minute, ...
1
vote
3answers
556 views
Wicket @SpringBean doesn't create serializable proxy
@SpringBean
PDLocalizerLogic loc;
When using above I receive java.io.NotSerializableException. This is because loc is not serializable, but this shouldn't be problem because spring beans are a ...
1
vote
1answer
2k views
Starting Wicket web application with OSGi HTTP Service
I'm trying to start a Wicket Application using Felix implementation of OSGi HTTP service, for that I just register the service using WicketServlet with applicationClassName parameter:
...
0
votes
1answer
242 views
Testing Wicket panels with constructor arguments
I got a page with several panels that takes several parameters in their constructors.
One of them being a menu that takes a list for the different buttons in the menu.
I've tried to test it as ...
0
votes
2answers
461 views
How can I add an image column to a table in wicket framework?
I want to add a column containing images in each cell of a table in wicket framework. I make the table in a java class and have a createColumns() method as the following:
private List<IColumn> ...
0
votes
2answers
188 views
How to wrap Wicket page rendering in a Spring / Hibernate transaction?
My application loads entities from a Hibernate DAO, with OpenSessionInViewFilter to allow rendering.
In some cases I want to make a minor change to a field -
Long orderId ...
link = new ...
0
votes
2answers
509 views
Is there an activity indicator in Wicket?
I'll make this short:
Is there a way / library in Wicket to show an activity indicator? You know, the spinning thing that moves while the user is waiting for something, or is it just a javascript ...
0
votes
1answer
152 views
How to stop JQWicket's AjaxSlider from sliding right?
I'm a noob to RIA-development and working with the JQWicket's Ajax Slider Example.
I'm trying to implement a page of two Ajax sliders and a counter. The idea is that the user can spread the the ...