Re: double type text field - auto roundsoff

2014-02-27 Thread francois meillet
Is there any specific DoubleConverter initialized in the Application's newConverterLocator() method ? François On Wed, Feb 26, 2014 at 5:55 PM, nazeem md.naz...@gmail.com wrote: Changing the object type to Big Decimal solves this .. Still not clear how.. if any body knows any clue please

StringResourceModel

2014-02-27 Thread PDiefent
Hi, I just ran into a problem generating a confirmation for a delete request. I'm using an AjaxCallListener to build the confirmation message: public class AjaxConfimListener extends AjaxCallListener { private static final long serialVersionUID = 1L; private final LinkIcon icon;

Re: StringResourceModel

2014-02-27 Thread Ernesto Reinaldo Barreiro
Strings#escapeMarkup? On Thu, Feb 27, 2014 at 11:15 AM, PDiefent pdief...@csc.com wrote: Hi, I just ran into a problem generating a confirmation for a delete request. I'm using an AjaxCallListener to build the confirmation message: public class AjaxConfimListener extends AjaxCallListener {

Re: Potential HTTPS redirects bug with deactivated js

2014-02-27 Thread Sven Meier
Hi Dmitriy, this is a bug in WebPageRenderer, so please open a Jira issue. A simple non-ajax button exposes the problem too, no need to tinker with deactivated JS: form.add(new AjaxButton(ajaxGo, form){}); form.add(new Button(go)); Please change your quickstart before

Re: Potential HTTPS redirects bug with deactivated js

2014-02-27 Thread Dmitriy Neretin
Thanks for the response Sven! Issue created: https://issues.apache.org/jira/browse/WICKET-5522 Dmitriy 2014-02-27 12:22 GMT+01:00 Sven Meier s...@meiers.net: Hi Dmitriy, this is a bug in WebPageRenderer, so please open a Jira issue. A simple non-ajax button exposes the problem too, no

Re: Potential HTTPS redirects bug with deactivated js

2014-02-27 Thread Dmitriy Neretin
There is a workaround for the problem: Extend RedirectPage - anotate it with RequireHttps - insert this page between source (http) and target (https) pages. The second redirect leads to the https page! Dmitriy 2014-02-27 13:04 GMT+01:00 Dmitriy Neretin dmitriy.nere...@googlemail.com: Thanks

Issue with UrlPathPageParametersEncoder and %2F (/)

2014-02-27 Thread Sergio Paganoni
Hi everybody, I'm facing an issue with *Wicket 6.9.1* , I currently mount an endpoint (/test) the following way: mount(new MountedMapper(/test, MyPage.class, new UrlPathPageParametersEncoder())); Now if I address the page in the following way, the constructor of MyPage is correctly called

Re: Issue with UrlPathPageParametersEncoder and %2F (/)

2014-02-27 Thread Sven Meier
Does your Tomcat return HTTP 400? https://issues.apache.org/bugzilla/show_bug.cgi?id=7931 Sven On 02/26/2014 04:57 PM, Sergio Paganoni wrote: Hi everybody, I'm facing an issue with *Wicket 6.9.1* , I currently mount an endpoint (/test) the following way: mount(new MountedMapper(/test,

Re: double type text field - auto roundsoff

2014-02-27 Thread nazeem
No i don't have any initialised. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/double-type-text-field-auto-roundsoff-tp4664628p4664714.html Sent from the Users forum mailing list archive at Nabble.com.

Does wicket:link tag work inside pages in different packages?

2014-02-27 Thread Alberto Brosich
Hi, I have an header panel with a link to the homepage of the site. This panel is included in every page of the site. If I use the wicket:link tag for that link it works fine (for example, it is disabled in the homepage) for the pages in the same package of the Homepage class. If I am on a page

Re: Does wicket:link tag work inside pages in different packages?

2014-02-27 Thread Sven Meier
Have you read http://wicket.apache.org/guide/guide/urls.html#urls_3 ? Sven On 02/27/2014 03:44 PM, Alberto Brosich wrote: Hi, I have an header panel with a link to the homepage of the site. This panel is included in every page of the site. If I use the wicket:link tag for that link it works

Re: Does wicket:link tag work inside pages in different packages?

2014-02-27 Thread Alberto Brosich
Yes, I read it. Does it mean that have to do a different header panel for every suppages level (using ../(../)HomePage.html link)? Alberto On Thu, 2014-02-27 at 16:30 +0100, Sven Meier wrote: Have you read http://wicket.apache.org/guide/guide/urls.html#urls_3 ? Sven On 02/27/2014

Re: Detecting if page is opened in another tab

2014-02-27 Thread eaglei22
Thanks Martin, This seems to be the solution, but isn't working as it should. I tried this: add(new AjaxNewWindowNotifyingBehavior() { /** * */ private static

Component Queueing is here (master), aka Free Wicket From Hierarchy Hell, aka Markup Driven Component Tree

2014-02-27 Thread Igor Vaynberg
in the past couple of weeks i finally had some time to finish up the component queueing feature. it is meant to greatly decrease common maintenance headaches associated with markup tweaks and moving components around. see the intro here:

Re: Component Queueing is here (master), aka Free Wicket From Hierarchy Hell, aka Markup Driven Component Tree

2014-02-27 Thread Ernesto Reinaldo Barreiro
Thanks! On Fri, Feb 28, 2014 at 3:00 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: in the past couple of weeks i finally had some time to finish up the component queueing feature. it is meant to greatly decrease common maintenance headaches associated with markup tweaks and moving