Re: Repeat every 2 rows in a table

2016-10-14 Thread ganea iulia
Thank you, works great. On Fri, Oct 14, 2016 at 12:06 PM, Peter Henderson < peter.hender...@starjar.com> wrote: > Hi > > Change your markup to > > ... > > .. > > > > > > > > > > > > > > > > > > On 14 October 2016 at 09:44, ganea iulia wrote: > > >

Re: Repeat every 2 rows in a table

2016-10-14 Thread Peter Henderson
Hi Change your markup to ... .. On 14 October 2016 at 09:44, ganea iulia wrote: > Hello Per, thank you for the links. > > I have following html code: > > > > width="100%"> > > > Name > Code > > > Id > > > > > > > > > > >

Re: Repeat every 2 rows in a table

2016-10-14 Thread ganea iulia
Hello Per, thank you for the links. I have following html code: Name Code Id The Java code looks like this: public TestPage(IModel model) { super(model); TestForm tst = new TestForm("testForm", model); tst.setOutputMarkupId(true); add(tst); } class TestForm

Re: Repeat every 2 rows in a table

2016-10-14 Thread Per Newgro
Hello ganea, you can find many information about your problem at http://examples7x.wicket.apache.org/index.html espacially http://examples7x.wicket.apache.org/repeater The user guide can you find here https://ci.apache.org/projects/wicket/guide/7.x/ Repeaters are explained here

Repeat every 2 rows in a table

2016-10-14 Thread ganea iulia
Hello, I have in the html file, a table where I need to repeat every two rows. So, my table is backed by a bean, where the bean values fill 2 rows of the table. When new bean instance is created, I need to add new 2 rows to the table. Thank you