Re: PageableListView with two rows

2013-06-14 Thread Pierre Goupil
Thanks to both of you! I've managed to do what I liked. It's a little bit unusual for me, but it's clean and it works. Cheers men, Pierre On Tue, Jun 11, 2013 at 5:06 PM, Eric Jablow wrote: > ListView and its subclasses do not require the use of tables. If another > style of markup is useful

Re: PageableListView with two rows

2013-06-11 Thread Eric Jablow
ListView and its subclasses do not require the use of tables. If another style of markup is useful, use that. You can have a with nested s, In fact, you could create a ProfilePanel and use a div for each. On Mon, Jun 10, 2013 at 6:06 PM, Dan Retzlaff wrote: > Maybe I just don't understand you

Re: PageableListView with two rows

2013-06-10 Thread Dan Retzlaff
Maybe I just don't understand your requirements. I thought you want two rows for each Profile. So: add(new PageableListView("profile", profiles) { populateItem(item) { item.add(new Label("row1column1")); item.add(new Label("row2column1")); item.setRenderBodyOnly(true); } });

Re: PageableListView with two rows

2013-06-10 Thread Pierre Goupil
I'm sorry, but I don't understand what you mean. I've tried this: final PageableListView columnListView = new PageableListView(

Re: PageableListView with two rows

2013-06-10 Thread Dan Retzlaff
Hi Pierre, Associate your PageableListView with a that wraps your two s. Use item.setRenderBodyOnly(true) to prevent the from being rendered so your table markup is still valid. Dan On Mon, Jun 10, 2013 at 12:49 PM, Pierre Goupil wrote: > Good evening, > > Is there a way to have a PageableLi