I occasionally have some long running AJAX requests in my Wicket application. When this occurs the application is largely unusable as subsequent AJAX requests are queued up to process synchronously ...
I've tried to set up a page in Wicket (extending org.apache.wicket.markup.html.WebPage) to receive an HTTP post request containing an XML document in the body that is coming from a ...
Is there a way to make a Wicket component re-render itself on every AJAX request to a page? (Essentially to do what ajaxRendered=true does in RichFaces.)
My application basically consists of the ...
Situation
In my Wicket application, I have a page which contains two tags. Each time a tab is selected, its content is fetched via Ajax so that every time you ...
Question about component state management with Apache Wicket 1.4.x
I have a bookmarkable, stateful page that contains a form with a set search criteria. The user search for items matching the selected ...
Is there any way to request pipeline processors in Apache Wicket? Possibly with an open-source framework that integrates with Wicket?
I want to check requests before my web pages are rendered.
I have a wicket form containing a FileUploadField and some more text fields. When a mandatory field is missing, the validation correctly fails. Then, the file I chose for the upload ...
I am trying to map my requests in a special way to achieve a very simple purpose.
Say the root website is abc.com and has several users. Each user has a home ...
First, what I want to achieve:
Let's say I'm doing some stuff in onClick() method of a AjaxLink. I want to give user some feedback with mid-status and continue on doing, ...