Re: Solved: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-12-17 Thread James Carman
This is what I love about Wicketeers. They don't just sit around complaining about something; they jump in and help fix it! Way to go Wicket community! On Sat, Dec 17, 2011 at 7:49 AM, Martin Grigorov wrote: > On Sat, Dec 17, 2011 at 12:58 AM, Dan Retzlaff wrote: >> Yes, that broke our app dur

Re: Solved: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-12-17 Thread Martin Grigorov
On Sat, Dec 17, 2011 at 12:58 AM, Dan Retzlaff wrote: > Yes, that broke our app during migration as well. I've added a migration > wiki entry. > https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-Component.getMarkupId%28%29implementationchanged Thanks,

Re: Solved: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-12-16 Thread Dan Retzlaff
Yes, that broke our app during migration as well. I've added a migration wiki entry. https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-Component.getMarkupId%28%29implementationchanged On Fri, Dec 16, 2011 at 1:51 PM, Anders Peterson wrote: > The prob

Solved: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-12-16 Thread Anders Peterson
The problem was in the html file. I used to have this: wicket:id="marketWeight" /> Needed to change that to: "marketWeight" is the component with the ajax behaviour, and it was in a ListView so I had several of them. I guess something related to replacing the name/id of a component cha