Re: NumberTextField Issue

2013-03-10 Thread Paul Bors
Funny, I never had to use the number attribute thus far. But I'm using HTMl 4.01 and not 5. In HTML my browser can input decimals so it could be something else funky. ~ Thank you, Paul C Bors On Mar 10, 2013, at 16:26, William Speirs wrote: > I tried that and get the following: > > Compon

Re: NumberTextField Issue

2013-03-10 Thread William Speirs
I tried that and get the following: Component must be applied to a tag with [type] attribute matching [number], not [text] So it really wants it to be a number... just not sure why it won't accept decimals. Thanks... Bill- On Sun, Mar 10, 2013 at 4:11 PM, Paul Bors wrote: > Your HTML input

Re: NumberTextField Issue

2013-03-10 Thread Paul Bors
Your HTML input type is "number", try using "text" as Wicket would use its internal converter to convert (cast) the string user input in HTML to the backing model object type (double in your case). HTML input tag: http://www.w3schools.com/tags/att_input_type.asp Wicket custom converters: https:

Re: on models and Panels

2013-03-10 Thread Sven Meier
Hi, these lines don't make sense: codeAutoComplete = new AutoCompleteTextField( "code", new PropertyModel(codeModel.getObject(), "code"), getAutocompleteRenderer()) { If codeModel c

NumberTextField Issue

2013-03-10 Thread William Speirs
I'm trying to use a NumberTextField with a type of Double and the form will only let me type in integers (or doubles that end in .0). Is this a known issue? Is there a workaround? My basic code... *Java* private IModel doubleModel; final NumberTextField d = new NumberTextField("d", d

atmosphere: urls erased from response

2013-03-10 Thread Martin Geisse
Hi, sorry if this mail arrives twice, but the mailing list seems to have dropped the first one. I'm having problems with wicket-atmosphere. It seems like the various urlFor() methods return null when called from the "artificial" request cycle that gets triggered by EventBus.post(Object). Speci

Re: Page Hierachy and Packages

2013-03-10 Thread David Beer
Hi All Thanks for your replies I have decided to write the navigational part of the site in a separate panel and add it to the BasePage using a repeating view and avoiding Wicket Link. Thanks David On 10/03/13 12:53, Bas Gooren wrote: Hi David, The auto linking using resolves based on act

on models and Panels

2013-03-10 Thread grazia
I have a panel containing an autocomplete. The autocomplete contains its own converter. The model of the page that contains the autocomplete-panel should be updated to the converted object of the autocomplete, and it does, but (here it shows my lack of wicket knowledge) somehow it gets set once w

Re: Page Hierachy and Packages

2013-03-10 Thread Bas Gooren
Hi David, The auto linking using resolves based on actual location on disk if I'm not mistaken. In other words: if you want to link to the homepage from inside the auth package, you should use: ../HomePage.html This means the link will also work if you are previewing the html outside of

Re: wiquery ResizableBehavior weird results on stop

2013-03-10 Thread Ernesto Reinaldo Barreiro
Pieter, Can you create a quickstart or "something" I can give it a try? Or give it a try to what I have added to wiquery: test panel I have created there seems to be working fine. If those changes work fine for you I can as other team member to roll out a new version of wiquery next week;-) On Su