Re: When does a Page or Component die?

2011-01-07 Thread Martijn Dashorst
AFAIK when it is evicted from the page store or when the session expires. Martijn On Fri, Jan 7, 2011 at 7:11 AM, Andreas Mueller andreasbmuel...@freenet.de wrote: Hi all, I have found a lot of convenient API to work with the different lifecycle phases of a page. However, I couldn't find the

using ajaxlink when deployed to google app engine

2011-01-07 Thread fachhoch
I am trying to create a simple app using wicket in google app engine. I did read about semicompatibilty with gae and the changes to be done to make it work. I did these changes and I can see the hompage . I added AjaxLink to home page , but on clicking on the link nothing happens and the

Re: Wicket web site down with a few hits

2011-01-07 Thread LucHub
Hi Martin, thanks for you suggestion. I'll make more test in this direction. Right know I temporaly solved the problem avoiding the use of the c3p0 library and having a thread that every hour keep the connection awake. Of course I'll do test to optimize the app based on your suggestion. Thanks a

Re: Any site running 1.5-M3 examples

2011-01-07 Thread Martin Grigorov
http://www.wicket-library.com/wicket-examples runs 1.5-SNAPSHOT from 29th of December 2010. It is a bit hard to poke Johan (he administrates www.wicketstuff.org) everytime we make a release, so Juergen gave me access to www.wicket-library.com and we will try to keep it up-to-date with latest

Re: Wicket web site down with a few hits

2011-01-07 Thread Martijn Dashorst
c3p0 and other connection pools are pretty much deprecated with hibernate 3.6 (as we discovered). com.jolbox.bonecp is a competent replacement. Martijn On Fri, Jan 7, 2011 at 11:42 AM, LucHub luca.abb...@luchub.com wrote: Hi Martin, thanks for you suggestion. I'll make more test in this

Print all HTML content to file

2011-01-07 Thread Brown, Berlin [GCG-PFS]
I have used the WicketTester to print out the rendered HTML content from wicket. I did that through the unit tests. How would I run a similar operation to return the rendered output document outside of WicketTester.I want to print the document from within my J2EE server. Here is the

Re: Print all HTML content to file

2011-01-07 Thread Martin Grigorov
See the code for http://wicketstuff.org/wicket14/staticpages/capturedpage On Fri, Jan 7, 2011 at 4:54 PM, Brown, Berlin [GCG-PFS] berlin.br...@primerica.com wrote: I have used the WicketTester to print out the rendered HTML content from wicket. I did that through the unit tests. How would I

RenderBodyOnly and email links

2011-01-07 Thread Jim Pinkham
Many may already have realized this, but for anyone who hasn't, I just came across this elegant way to handle optional emails. The user/admin stuff is just an example use-case, simplified to fit here. // User's Statement page lists some items and who bought them... AbstractLink myLink;

Re: Show wait cursor on every action

2011-01-07 Thread Per Newgro
Thanks Martin, and excuse me. But i didn't describe the whole problem. I want to click a link and load another page (simply by calling setResponsePage). I already tried a solution like body style=cursor: wait; onload=document.body.style.cursor='default'; But it seems that onload is called

Re: Show wait cursor on every action

2011-01-07 Thread Martin Makundi
Hi! I think you just named them all ;) Read: you have a bug somewhere in your implementation, otherwise you should have found the solution already trying those options. ** Martin 2011/1/7 Per Newgro per.new...@gmx.ch: Thanks Martin, and excuse me. But i didn't describe the whole problem.

Re: Show wait cursor on every action

2011-01-07 Thread Per Newgro
Thanks Martin, damn bugs :-). I will check it again. If i get it i post the solution. Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Show wait cursor on every action

2011-01-07 Thread Martin Grigorov
Either I don't understand you again or you don't know how page load works. When you click a link (no ajax involved) then a request is sent to the server and the server returns a response which kinda overrides the previous response. I.e. when you click the link you change the cursor to be pointer

Re: IndicatingAjaxButton (Doesn't display indicator in Internet Explorer)

2011-01-07 Thread MZemeck
This problem still exists in Wicket 1.14.15. IndicatingAjaxButton does not show the busy indicator in IE, it does work in Firefox. IndicatingAjaxLink does show the indicator in IE. - Forwarded by Matthew Zemeck/ADM/NYSOSC on 01/07/2011 03:32 PM - From: mzem...@osc.state.ny.us To:

AbstractAjaxTimerBehavior and getPreconditionScript

2011-01-07 Thread Nelson Segura
I am writing code that checks whether the user has typed something in the page, and if so, goes an AJAX call to keep the user session alive. For this I am using AbstractAjaxTimerBehavior to ping the server every certain time, and overriding its getPreconditionScript() method to call a JS function

Re: using ajaxlink when deployed to google app engine

2011-01-07 Thread fachhoch
Please help me with the issue , I am trying to deploy wicket in google app engine, i was able to bring up the home page ,then for further testing I added a simple ajaxlink , when I click on the link nothing happens then I enabled logging of wicket and saw this in logs FINE: ending

Re: AbstractAjaxTimerBehavior and getPreconditionScript

2011-01-07 Thread Jeremy Thomerson
On Fri, Jan 7, 2011 at 4:56 PM, Nelson Segura nsegu...@gmail.com wrote: I am writing code that checks whether the user has typed something in the page, and if so, goes an AJAX call to keep the user session alive. For this I am using AbstractAjaxTimerBehavior to ping the server every certain