NumberTextField eats my markup step attribute

2014-01-10 Thread Per Newgro
Hi, i would like to enable float values in my form (without validation error). But it's not possible for me. If i add this input markup input type=number step=any wicket:id=myNumber / and assign a new NumberTextFieldDouble(myNumber, numberModel); the resulting markup is input type=number

Re: NumberTextField eats my markup step attribute

2014-01-10 Thread Martin Grigorov
Hi, This is a bug. Please file a ticket. Martin Grigorov Wicket Training and Consulting On Fri, Jan 10, 2014 at 10:01 AM, Per Newgro per.new...@gmx.ch wrote: Hi, i would like to enable float values in my form (without validation error). But it's not possible for me. If i add this input

Aw: NumberTextField eats my markup step attribute

2014-01-10 Thread Per Newgro
Because the w3c-spec says step = any or positive floating-point number NEW Specifies the value granularity of the element’s value. and Positive floating-point number # A non-negative floating-point number, with the following restriction: must be greater than zero

Aw: Re: NumberTextField eats my markup step attribute

2014-01-10 Thread Per Newgro
Thank you Martin. Done https://issues.apache.org/jira/browse/WICKET-5467 Gesendet: Freitag, 10. Januar 2014 um 09:09 Uhr Von: Martin Grigorov mgrigo...@apache.org An: users@wicket.apache.org users@wicket.apache.org Betreff: Re: NumberTextField eats my markup step attribute Hi, This is a

Re: Re: NumberTextField eats my markup step attribute

2014-01-10 Thread Martin Grigorov
Do you want to add suggested improvement as a patch (+test) ? :) Martin Grigorov Wicket Training and Consulting On Fri, Jan 10, 2014 at 11:13 AM, Per Newgro per.new...@gmx.ch wrote: Thank you Martin. Done https://issues.apache.org/jira/browse/WICKET-5467 Gesendet: Freitag, 10. Januar

Announcing DEVdev: the Deventer Developers meetup

2014-01-10 Thread Martijn Dashorst
We just launched a new meetup in Deventer, the Netherlands: the DEVdev. We intend this to be a general developer oriented meetup that has semi-regular events. We want to kick off the meetup series with a Wicket oriented evening consisting of 3 presentations in dutch (we do plan to invite

Re: Announcing DEVdev: the Deventer Developers meetup

2014-01-10 Thread Jeroen Steenbeeke
The 30th of January is a Thursday, not a Wednesday 2014/1/10 Martijn Dashorst martijn.dasho...@gmail.com We just launched a new meetup in Deventer, the Netherlands: the DEVdev. We intend this to be a general developer oriented meetup that has semi-regular events. We want to kick off the

Re: Announcing DEVdev: the Deventer Developers meetup

2014-01-10 Thread Martijn Dashorst
True. It is Thursday 30 januari. Klopt. Het is donderdag 30 januari. Martijn 2014/1/10 Jeroen Steenbeeke j.steenbeeke...@gmail.com: The 30th of January is a Thursday, not a Wednesday 2014/1/10 Martijn Dashorst martijn.dasho...@gmail.com We just launched a new meetup in Deventer, the

Re: Announcing DEVdev: the Deventer Developers meetup

2014-01-10 Thread Ernesto Reinaldo Barreiro
Graag een beige Nederlands te lessen. Hope presentation slides are in English and will be shared somewhere? On Fri, Jan 10, 2014 at 11:14 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: We just launched a new meetup in Deventer, the Netherlands: the DEVdev. We intend this to be a

Re: Wicket-Bootstrap Question

2014-01-10 Thread Michael Haitz
if you want to use bootstrap on all your pages, then use settings.setAutoAppendResources(true) instead of renderHead() { Bootstrap.renderHead(response); }. cheers, Michael Am 09.01.2014 um 19:32 schrieb Gabriel Landon glan...@piti.pf: In the init() method of your application class : final

Re: Announcing DEVdev: the Deventer Developers meetup

2014-01-10 Thread Martijn Dashorst
BTW the registration process requires a manual by yours truly, so it can take minutes, an hour or sometimes longer to get through the registration process unfortunately. I intend to moderate everybody through as soon as possible. Martijn On Fri, Jan 10, 2014 at 11:28 AM, Ernesto Reinaldo

Re: Wicket-Bootstrap Question

2014-01-10 Thread David Beer
Hi Joesph Take a look at this simple example project I did of getting wicket-bootstrap3 working. https://github.com/dmbeer/wicket-bootstrap-example Thanks David On 09/01/14 03:40, Joseph Mokenela wrote: Hi, I am not sure whether this is the right place to ask *wicket-bootstrap*specific

Re: Wicket-Bootstrap Question

2014-01-10 Thread Joseph Mokenela
I would like to thank everyone for the quick responses. I really appreciate it. Looks like I was calling the some of the css Bootstrap 3 specific classes from my pages, but what was actually loaded by the framework was version 2.3.2. Kind Regards, Joseph On Fri, Jan 10, 2014 at 1:42 PM, David

how to add field to event in a wicket.jquery.ui calendar

2014-01-10 Thread Selom
Hi all, I am currently based on the com.googlecode.wicket.jquery.ui.samples.pages.calendar.ExtendedCalendarPage I have added in my dialog panel (AbstractFormDialog) another field ( an identifiant in a wicket.jquery.ui..AutoCompleteTextFieldString(identifiant) ). The event model looks like

ListenerInvocationNotAllowedException and EmptyRequestHandler

2014-01-10 Thread jchappelle
We are starting to get ListenerInvocationNotAllowedExceptions intermittently in production. What are some suggestions for handling this? My first thought is return an EmptyRequestHandler in my custom IExceptionMapper implementation. Is this a bad practice? Thanks for your time. -- View this

Re: how to add field to event in a wicket.jquery.ui calendar

2014-01-10 Thread Sebastien
Hi Pierre, Did you called calendar.refresh(target)? Do you use a CompoundPropertyModel? Maybe you have to call calendar#modelChanged? Can you post a quickstart so I can investigate? Thanks in advance, Sebastien. On Fri, Jan 10, 2014 at 4:45 PM, Selom pierre.kou...@uhb.fr wrote: Hi all, I

Nested Forms

2014-01-10 Thread gmparker2000
When submitting an inner form it appears that the request contains all of the outer and inner form fields. Is this the expected behaviour? From what I can see it appears that the outer form is submitted, and only the inner form parameters are validated and used for model updates. -- View this

Publish Javadoc or big number of Static pages

2014-01-10 Thread andre seame
Hello, I have a wicket site to manage different points on the project. I receive 200 HTML pages for the developer teams. These pages are javadoc pages. I add some dynamic pages built over the static pages with wicket. And I will to publish all pages with wicket. As I have static HTML

Re: Nested Forms

2014-01-10 Thread Chris Snyder
Nested form elements (what I'm assuming you're referring to) aren't allowed, per the HTML spec: http://www.w3.org/TR/html5/forms.html I wouldn't expect Wicket to follow any kind of predictable behavior (especially since different browsers likely exhibit different behaviors themselves). Best,

Re: Nested Forms

2014-01-10 Thread Marios Skounakis
Html does not support nested forms. Wicket works around this limitation and allows form nesting. I think it changes the html so that the inner form tags become span tags. This means that whenever any of the forms needs to be posted, everything is posted since in the result html there's only one

Re: Nested Forms

2014-01-10 Thread Paul Bors
Also see section 12.5 Nested forms of the Free Guide at http://wicket.apache.org/guide/guide/chapter11.html#chapter11_5 On Fri, Jan 10, 2014 at 12:56 PM, Marios Skounakis msc...@gmail.com wrote: Html does not support nested forms. Wicket works around this limitation and allows form nesting. I

Re: Publish Javadoc or big number of Static pages

2014-01-10 Thread Paul Bors
I'm not following, you want to show 200 static HTML pages in your webapp? Your webapp must be running on top of a web server, why not just let the web server server the static content? What's the dynamic part of those 200 static HTML pages? Do you need to authenticate the user first or something

Re: ListenerInvocationNotAllowedException and EmptyRequestHandler

2014-01-10 Thread Paul Bors
Do you have a stack trace? On Fri, Jan 10, 2014 at 11:00 AM, jchappelle jchappe...@4redi.com wrote: We are starting to get ListenerInvocationNotAllowedExceptions intermittently in production. What are some suggestions for handling this? My first thought is return an EmptyRequestHandler in

Re: ListenerInvocationNotAllowedException and EmptyRequestHandler

2014-01-10 Thread jchappelle
Sometimes it's an AjaxLazyLoadPanel and sometimes it is an AjaxLink. This particular one is from an AjaxLazyLoadPanel. 2013-10-17 07:23:42,782 ERROR ajp-127.0.0.1-8009-6 com.redi.risk.ui.RiskExceptionMapper - Unexpected error occurred 2013-10-17 07:23:45,985 WARN ajp-127.0.0.1-8009-36

Re: Publish Javadoc or big number of Static pages

2014-01-10 Thread Steve
public class StaticPage extends Page implements IMarkupResourceStreamProvider, IMarkupCacheKeyProvider { private String staticPageFilename; public StaticPage(String staticPageFilename) { super(); this.staticPageFilename = staticPageFilename; } @Override

Re: Publish Javadoc or big number of Static pages

2014-01-10 Thread Steve
Actually here's a slightly better example using PageParameters instead. This will allow you to mount it using: WebApplication.get().mountPage(/static, StaticPage.class); Also demonstrates that you can inject your own wicket tags into the markup before returning it leaving the original markup