Help, Problems With Wicket Bookmarkable Page On Sun Web Server Pass Through

2010-06-26 Thread Carlo Camerino
Hi, Need help on this. We currently deployed a wicket application on glassfish. The application's home page is mounted as /login - declared in the application as a mountable bookmarkable page. when i try to access it directly in glassfish http://localhost:8080/application/login i don't have a

Re: Wicket: On RadioChoice component, invoke form submit, what am I missing

2010-06-26 Thread Martin Grigorov
You need to use either pure Javascript: 1) input type=radio onchange=this.form.submit();/ or Ajax: 2) radioGroup.add(new AjaxFormSubmitBehavior(onchange) {public void onSubmit(AjaxRequestTarget target) {...}} On Fri, 2010-06-25 at 14:09 -0400, Brown, Berlin [GCG-PFS] wrote: There are some

Re: How to Ajax-validate CheckBoxMultipleChoice?

2010-06-26 Thread yaniv kessler
Is that element placed / added to a form ? On Sat, Jun 26, 2010 at 5:32 AM, David Chang david_q_zh...@yahoo.comwrote: Hi, I am unable to addres this need and have to ask the group. I am using the ajax approach to validate each field on a form. See the following: div

Re: How to Ajax-validate CheckBoxMultipleChoice?

2010-06-26 Thread David Chang
Yes. When I click Save button, wickets reports required error message for the CheckBoxMultipleChoice component. Thanks for chiming in! Best. --- On Sat, 6/26/10, yaniv kessler yan...@gmail.com wrote: From: yaniv kessler yan...@gmail.com Subject: Re: How to Ajax-validate

Re: Wicket: On RadioChoice component, invoke form submit, what am I missing

2010-06-26 Thread Berlin Brown
On Sat, Jun 26, 2010 at 6:01 AM, Martin Grigorov martingrigo...@yahoo.comwrote: You need to use either pure Javascript: 1) input type=radio onchange=this.form.submit();/ or Ajax: 2) radioGroup.add(new AjaxFormSubmitBehavior(onchange) {public void onSubmit(AjaxRequestTarget target) {...}}

Re: Help, Problems With Wicket Bookmarkable Page On Sun Web Server Pass Through

2010-06-26 Thread Carlo Camerino
here's the difference of the two requests Direct ( NO Web Server) GET /bluelace/login/wicket:interface/:29:loginPanel:loginForm:forgotpassLink::ILinkListener:: HTTP/1.1 Host: localhost:8091 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3

GMap2 and adding LocalSearch

2010-06-26 Thread 7zark7
I'm having trouble using GMap2 and adding a LocalSearch control: http://www.google.com/uds/solutions/localsearch/index.html Looks to be a one liner in Javascript: map.addControl(new google.maps.LocalSearch()); But given the class heirarchy and JS generation used, not sure how I would do

Reload HTML from deployed war

2010-06-26 Thread Daniele Dellafiore
Hi. To make easier for my designer to work, I make him modified a deployed version of the application. He can edit css and html and see changes live. Webapp is deployed on a jetty 7.0 container and while the CSS modifications of the exploded webapp result in a change, when I modify an HTML

Re: one session for standAloneApp or one session for FacebookApp

2010-06-26 Thread nicolas melendez
sounds like Authetication rules On Thu, Jun 24, 2010 at 3:37 PM, Fernando Wermus fernando.wer...@gmail.comwrote: Hi all, Users can login into my site in stand alone mode or with facebook connect. Thus, I would like to have two polimorphic session according to how the user decides to

Re: GMap2 and adding LocalSearch

2010-06-26 Thread Sven Meier
Hi, LocalSearch is deprecated: http://www.google.com/uds/solutions/localsearch/index.html Shouldn't we think about support for the GoogleBar? http://code.google.com/intl/de/apis/maps/documentation/javascript/v2/services.html#UsingGoogleBar Sven On 06/26/2010 07:29 PM, 7zark7 wrote:

Re: GMap2 and adding LocalSearch

2010-06-26 Thread Anh
Either is fine - I basically need a search box in a Gmap component to help people find the location they are looking for. Is either approach easy to integrate with the existing Gmap2 component? Thanks On Jun 26, 2010, at 11:37 AM, Sven Meier s...@meiers.net wrote: Hi, LocalSearch is

Re: GMap2 and adding LocalSearch

2010-06-26 Thread Sven Meier
Hi, enabling the GoogleBar was quite easy: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/gmap2-parent/gmap2-examples/src/main/java/wicket/contrib/examples/gmap/search/HomePage.java Sven On 06/26/2010 08:58 PM, Anh wrote: Either is fine - I basically

Re: GMap2 and adding LocalSearch

2010-06-26 Thread Anh
Oh you are the man :-) Thanks Sven! On Sat, Jun 26, 2010 at 1:18 PM, Sven Meier s...@meiers.net wrote: Hi, enabling the GoogleBar was quite easy: