Re: Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-14 Thread Martin Grigorov
? -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Thursday, September 12, 2013 9:29 AM To: users@wicket.apache.org Subject: Re: Possible asynchronous ajax operations with form ajaxsubmitlink No, because all access to Wicket pages is serialized (on the server). Sven On 09

Re: Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-13 Thread Sven Meier
is synchronous. Is that mechanism handled in Java side/server side? What classes? -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Thursday, September 12, 2013 9:29 AM To: users@wicket.apache.org Subject: Re: Possible asynchronous ajax operations with form

RE: Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-13 Thread Brown, Berlin [PRI-1PP]
? -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Thursday, September 12, 2013 9:29 AM To: users@wicket.apache.org Subject: Re: Possible asynchronous ajax operations with form ajaxsubmitlink No, because all access to Wicket pages is serialized (on the server). Sven On 09/12

Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-12 Thread Brown, Berlin [PRI-1PP]
Is it possible for wicket to execute operations asynchronously in terms of handling ajax calls. For example, if I have an ajax submit link. AjaxSubmitLink1 { OnSubmit() { runLongRunningOperation(); // Imagine this operation runs 10 seconds } } AjaxSubmitLink2 {

Re: Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-12 Thread Sven Meier
No, because all access to Wicket pages is serialized (on the server). Sven On 09/12/2013 03:20 PM, Brown, Berlin [PRI-1PP] wrote: Is it possible for wicket to execute operations asynchronously in terms of handling ajax calls. For example, if I have an ajax submit link.