Re: Getting new lines in RepeatingView

2012-02-28 Thread Eric Jablow
On Mon, Feb 27, 2012 at 6:14 PM, Dale Ogilvie dale_ogil...@trimble.comwrote: Using an override of RepeatView, I get better output. The only slight imperfection being that each individual row does not take it's starting cue from the position of the repeated element. I can live with that. Is

Re: Getting new lines in RepeatingView

2012-02-28 Thread Martin Grigorov
On Tue, Feb 28, 2012 at 5:36 PM, Eric Jablow erjab...@gmail.com wrote: On Mon, Feb 27, 2012 at 6:14 PM, Dale Ogilvie dale_ogil...@trimble.comwrote: Using an override of RepeatView, I get better output. The only slight imperfection being that each individual row does not take it's starting cue

RE: Getting new lines in RepeatingView

2012-02-27 Thread Dale Ogilvie
Using an override of RepeatView, I get better output. The only slight imperfection being that each individual row does not take it's starting cue from the position of the repeated element. I can live with that. i.e. output now has the first element positioned per the template, the remainder are

Re: Getting new lines in RepeatingView

2012-02-24 Thread Eric Jablow
On Fri, Feb 24, 2012 at 1:54 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi, I think you can override RepeatingView's org.apache.wicket.markup.repeater.AbstractRepeater#renderChild(): { super.renderChild(component); getResponse().write(br/); } I don't think br / is

Re: Getting new lines in RepeatingView

2012-02-23 Thread Martin Grigorov
Hi, I think you can override RepeatingView's org.apache.wicket.markup.repeater.AbstractRepeater#renderChild(): { super.renderChild(component); getResponse().write(br/); } On Fri, Feb 24, 2012 at 4:24 AM, Dale Ogilvie dale_ogil...@trimble.com wrote: Hi, From the docs: Java: