Re: Offline capable web application

2010-02-20 Thread Eelco Hillenius
Who is talking about wrapping GWT components? What I'm saying is that the kind of functionality you would use to create partially offline applications, like HTML 5's web storage, you can wrap in a Wicket component. What's so strange about that? We do that all the time with JavaScript widgets. So

PagingNavigator - Image for navigation and onclick

2010-02-20 Thread Josef Ornetsmüller
hello, 1) i would like to replace the naviagtion chars ... by images, following this http://javathoughts.capesugarbird.com/2007/04/how-to-change-markup-of-built-in-wicket.html instructions. 2) Here you can see a generated link from me app ... a wicket:id=prev

URL Encoding strategy

2010-02-20 Thread Nishant Neeraj
Hi, I wanted to apply URL encoding strategy to application context root but I cant mount empty string because it throws exception at start-up. Is there a work around to this? Regards Nishant

Re: URL Encoding strategy

2010-02-20 Thread Erik van Oosten
Hi Nishant, This is tricky stuff. Here is some information: http://old.nabble.com/How-to-catch-unknown-%28not-mounted%29-URLs--td14949092.html Another approach is to do redirects from a servlet filter. If you have a couple of days of patience I'll have finished a blog article on it, with

Re: URL Encoding strategy

2010-02-20 Thread Nishant Neeraj
Thanks Erik. I guess, I'll go with sevlet filter approach for now. However, I'll be looking for your blog post. If possible, post the link to the article in this thread when you're done. Thanks again. Nishant On Sat, Feb 20, 2010 at 6:40 PM, Erik van Oosten e.vanoos...@grons.nlwrote: Hi

Re: [OT] Wicket changed my life !

2010-02-20 Thread nicolas melendez
programming web applications with wicket is as funny as play a game :). And with GAE, you don't need to paid for expensive Hosting :) . NM On Sat, Feb 20, 2010 at 2:18 AM, Ben Tilford bentilf...@gmail.com wrote: Models are the hardest part to learn... Because they are really models. On Sat,

Re: [OT] Wicket changed my life !

2010-02-20 Thread Riyad Kalla
That depends on how much traffic your app gets. GAE isn't cheap if you start getting serious traffic and depends on the services you tie into. On Sat, Feb 20, 2010 at 1:38 PM, nicolas melendez nfmelen...@gmail.comwrote: programming web applications with wicket is as funny as play a game :).

Re: [OT] Wicket changed my life !

2010-02-20 Thread nicolas melendez
serious traffic means that the business is fine. On Sat, Feb 20, 2010 at 8:10 PM, Riyad Kalla rka...@gmail.com wrote: That depends on how much traffic your app gets. GAE isn't cheap if you start getting serious traffic and depends on the services you tie into. On Sat, Feb 20, 2010 at 1:38

Re: Nested Forms

2010-02-20 Thread Charles Deal
Ok, then is the content found at these two pages not relevant for v1.4? http://cwiki.apache.org/WICKET/nested-forms.html and http://cwiki.apache.org/WICKET/conditional-validation.html I understand the idea of nested forms and I understand that HTML only supports one form. I had hoped that Wicket

Re: Nested Forms

2010-02-20 Thread Igor Vaynberg
if you press the submit button inside the embedded form - then only the embedded form is processed. but, if you press a submit button inside the outer form then it and all its embedded forms are processed. -igor On Sat, Feb 20, 2010 at 6:41 PM, Charles Deal chuckdea...@gmail.com wrote: Ok, then