Locale in NumberTextField

2014-04-07 Thread Per Newgro
Hello, i have a question regarding the input conversion in NumberTextField (wicket 6.14) This is the code in question: /** * Always use {@link Locale#ENGLISH} to parse the input. */ @Override protected void convertInput() {

Re: Locale in NumberTextField

2014-04-07 Thread Martin Grigorov
Hi, See https://issues.apache.org/jira/browse/WICKET-3591 Martin Grigorov Wicket Training and Consulting On Mon, Apr 7, 2014 at 10:25 AM, Per Newgro per.new...@gmx.ch wrote: Hello, i have a question regarding the input conversion in NumberTextField (wicket 6.14) This is the code in

Re: Wicket CDI 1.1

2014-04-07 Thread Emond Papegaaij
Did you migrate to wicket-cdi-1.1? To inject a non-managed class, use NonContextual.of(MyClass.class).inject(instance). Components, however, are injected by wicket-cdi itself. You should not need to inject those manually. Best regards, Emond Op 4 apr. 2014 20:54 schreef David Beer

Re: Wicket CDI 1.1

2014-04-07 Thread David Beer
Hi Edmund Thanks for the info. It appears the problem spanned further down to the library I am using. This was more related to Apache Shiro not being CDI aware. In the end I followed this post StackOverflow

Form component's model#setObject getting called twice per submit when inside a Border

2014-04-07 Thread Craig L
Hello, This is my first post to the forum and I am brand new to the wicket framework so please be patient. I am coming into an organization that is still using version 1.4.22. I know it is horribly old but we just can't upgrade right now. Here is a brief overview of my layout: MyNewPage which

Re: Form component's model#setObject getting called twice per submit when inside a Border

2014-04-07 Thread Sven Meier
Hi Craig, the stacktraces to both #setobject() calls would be helpful. http://pastebin.com/ Sven On 04/07/2014 05:37 PM, Craig L wrote: Hello, This is my first post to the forum and I am brand new to the wicket framework so please be patient. I am coming into an organization that is still

Wicket 1.6.7 TabbedPanel URL Access

2014-04-07 Thread Jeremie
Hello, I would like to know if it is possible to use a URL to open a tab using Wicket's TabbedPanel component. For example, I want to generate links to wicket classes that contain parameters and place the link in an HTML href tag so that when the users click the individual links, they are

Re: Wicket 1.6.7 TabbedPanel URL Access

2014-04-07 Thread Sven Meier
Hi, do you want to your url parameters? Are you looking for bookmarkable urls? You can analyse page parameters in a page's constructor and change its contents accordingly. Sven On 04/07/2014 06:57 PM, Jeremie wrote: Hello, I would like to know if it is possible to use a URL to open a tab