Running thread + AJAX + page serialization

2012-04-12 Thread Martin Schayna
Hi, I have this scenario: - browser requests some time-expensive page - page renders lazy component (instead of regular component) and starts thread for computation data - lazy component use Behavior with AJAX callback, timed in seconds - user sees in browser indicator - when Behavior fires, chec

Re: display artifact version in webpage

2011-12-14 Thread Martin Schayna
{ if (manifest.getMainAttributes() == null) return ""; Attributes.Name attName = new Attributes.Name(name); if (manifest.getMainAttributes().get(attName) != null) return manifest.getMainAttributes().get(attName).toString(); else

Re: [OT] Wicketeers from Czech rep.

2011-02-24 Thread Martin Schayna
yes, some of them :-) On 02/22/2011 10:04 PM, Jan Ferko wrote: yes, there are a few.:) On Tue, 2011-02-22 at 20:32 +0100, Ladislav DANKO wrote: yes, a lot of ;-) -Original Message- From: danisevsky [mailto:danisev...@gmail.com] Sent: Tuesday, February 22, 2011 4:52 PM To: users@wic

Re: Wicket Wiki

2010-04-29 Thread Martin Schayna
It's problem "only" {code} segments in wiki pages :) Workaround: you can see hidden text by editing page -- but you have to register. Just click on Edit Page link, than on Preview tab. Martin Schayna On 29.4.2010 15:48, Brian Mulholland wrote: I must be in some minority

Re: 2nd try: stateless AJAX behaviors in stateful page without its serialization

2010-04-19 Thread Martin Schayna
ng page by calling Session.getPage(). M. On 19.4.2010 10:37, Johan Compagner wrote: so for that ajax request you do want to create a new page every time the ajax request hits? 2010/4/19 Martin Schayna I have pretty stateful page with plenty of AJAX components. Most of these compo

2nd try: stateless AJAX behaviors in stateful page without its serialization

2010-04-19 Thread Martin Schayna
I have tried to implement this in my own RequestCycleProcessor.resolve(), but I hung on searching for page from requestParameters because Session.getPage() always touches page and it causes serialization after request processing. Is there any example, idea, whatever for implementing this in Wicket?

Semi-stateless AJAX behaviors

2010-04-09 Thread Martin Schayna
this in Wicket? Hope it's understandable :) Thank you, Martin Schayna