Re: Wicket 6.0 + JavaScriptFilteredIntoFooterHeaderResponse + CssHeaderItem

2012-01-08 Thread Martin Grigorov
Hi Rob, On Sun, Jan 8, 2012 at 8:12 AM, robert.mcguinness robert.mcguinness@gmail.com wrote: kk, got it working again by overriding /CssAcceptingHeaderResponseFilter#accepts/  /item instanceof CssHeaderItem || item instanceof PageHeaderItem/ also, for some js frameworks like

Re: stateless, not versioned pages - session problem

2012-01-08 Thread Martin Grigorov
Hej, On Sun, Jan 8, 2012 at 12:24 AM, kamiseq kami...@gmail.com wrote: hej I have weird problem with session that I cannot explain and that I don't fully understand. I started with default application settings and stateful web page. and the flow is that I 1. request homepage 2. put data

Re: stateless, not versioned pages - session problem

2012-01-08 Thread Martin Grigorov
2012/1/8 Chris Colman chr...@stepaheadsoftware.com: Not sure if I have an answer to your question but recently I asked how to turn off page versioning and was told to do: getRequestCycleSettings().  setRenderStrategy(IRequestCycleSettings.RenderStrategy.ONE_PASS_RENDER); Actually this just

RE: stateless, not versioned pages - session problem

2012-01-08 Thread Chris Colman
Not sure if I have an answer to your question but recently I asked how to turn off page versioning and was told to do: getRequestCycleSettings().  setRenderStrategy(IRequestCycleSettings.RenderStrategy.ONE_PASS_RENDER); Actually this just turns off the redirecting. The pages are still

Re: stateless, not versioned pages - session problem

2012-01-08 Thread Martin Grigorov
On Sun, Jan 8, 2012 at 11:31 AM, Chris Colman chr...@stepaheadsoftware.com wrote: Not sure if I have an answer to your question but recently I asked how to turn off page versioning and was told to do: getRequestCycleSettings().  

Re: stateless, not versioned pages - session problem

2012-01-08 Thread kamiseq
ok currently im using 1.5.3 i ll check with snapshot pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

RE: stateless, not versioned pages - session problem

2012-01-08 Thread Chris Colman
On Sun, Jan 8, 2012 at 11:31 AM, Chris Colman chr...@stepaheadsoftware.com wrote: Not sure if I have an answer to your question but recently I asked how to turn off page versioning and was told to do: getRequestCycleSettings().  

Re: Wicket 6.0 + JavaScriptFilteredIntoFooterHeaderResponse + CssHeaderItem

2012-01-08 Thread robert.mcguinness
done. thank martin. https://issues.apache.org/jira/browse/WICKET-4328 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-0-JavaScriptFilteredIntoFooterHeaderResponse-CssHeaderItem-tp4274687p4276477.html Sent from the Users forum mailing list archive at

AJAX upload in modal window hangs when file size is too large @L

2012-01-08 Thread Alec Swan
Hello, I have an upload form which uploads files using AJAX. When the file size is less than maxUploadSize the form work correctly on the page and modal window. When file size is greater than maxUploadSize then form works correctly and displays an error on the page, but hangs in modal window

AjaxLink causes list model to be detached before rendering!

2012-01-08 Thread Philip Wilkinson
Hi, Can anyone tell me why when I refresh a wicket page which has on it an AjaxLink, my list model is being detached just before its contents are rendered by a list view? I would expect detach only to be called after everything has been rendered. Detaching just before rendering would call a

Re: stateless, not versioned pages - session problem

2012-01-08 Thread kamiseq
ok so bind on session does the trick. now I looked at setAttribute method and I dont understand why the flow is altered when session is temporary. unfortunately I still get this #base_domain=mydoamin. so 1.5-SNAPSHOT behaves like 1.5.3 now I looked closely to url after last redirect to homepage

getAssociatedMarkup() invoked twice

2012-01-08 Thread TH Lim
Hi, I made my custom markup WebPage, not the default HTML and WebPage pair, to generate JSON responses. My custom WebPage implemented IMarkupCacheKeyProvider and IMarkupResourceStreamProvider interfaces. I come to realize that my implementation of