Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread vp143
()) is null most times (not all). I am not quite sure why this would be. When it is null, the constructor value passed through is not null, but is null within onTimer. Any ideas on this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread Martin Grigorov
most times (not all). I am not quite sure why this would be. When it is null, the constructor value passed through is not null, but is null within onTimer. Any ideas on this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread vp143
-L19 After deserialization it will be null. Martin Grigorov Wicket Training and Consulting -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664151.html Sent from the Users forum mailing list archive at Nabble.com

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread Bas Gooren
-L19 After deserialization it will be null. Martin Grigorov Wicket Training and Consulting -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664151.html Sent from the Users forum mailing list archive at Nabble.com

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread vp143
- Ernesto Reinaldo Barreiro Does anyone have a link to this post as I cannot find it? Regards, V -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664063.html Sent from the Users forum mailing list archive at Nabble.com

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread vp143
to stay away from it as REST functionality would be heavily used area on the website. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664064.html Sent from the Users forum mailing list archive at Nabble.com

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread Martin Grigorov
a timer to poll the panel again Regards - Ernesto Reinaldo Barreiro Does anyone have a link to this post as I cannot find it? Regards, V -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664063.html Sent from

AjaxLazyLoadPanel loading asynchronously

2014-01-29 Thread Vishal Popat
Hi, I have a situation where I have to make multiple REST calls to different suppliers. I currently am using AjaxLazyLoadPanel to make these calls but loading time is very slow and not scaleable if I wanted to add more suppliers. Is there a way to make AjaxLazyLoadPanel asynchronously? I have

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-29 Thread Ernesto Reinaldo Barreiro
Hi, I remember Igor posted and example of a non-blocking lazy load panel (long time ago). As far as I remember all it did was: 1-Check is results where ready is so render the panel 2-If not then schedule a timer to poll the panel again On Wed, Jan 29, 2014 at 1:28 PM, Vishal Popat

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-29 Thread Peter Henderson
On 29 January 2014 12:28, Vishal Popat vishal.po...@cipriati.co.uk wrote: Hi, I have a situation where I have to make multiple REST calls to different suppliers. I currently am using AjaxLazyLoadPanel to make these calls but loading time is very slow and not scaleable if I wanted to add