Table repeater: repeat across row AND column

2011-05-01 Thread Alexandros Karypidis
Hello, I am trying to create a web page that lists contact addresses in a table. My repeater can easily lay out one address per row, but I need to be able to list 2 addresses per row (actually, ideally I'd like to list N addresses per row). The problem is that ListView's operation

Re: Table repeater: repeat across row AND column

2011-05-01 Thread Martin Grigorov
I like your current approach better than what you want to do. Anyway here is how to do it: int currIndex = item.getIndex(); ListItem nextItem = get(Integer.toString(currIndex + 1)); if (nextItem != null) { ... } On Sun, May 1, 2011 at 6:51 PM, Alexandros Karypidis akary...@yahoo.gr wrote:

Re: Table repeater: repeat across row AND column

2011-05-01 Thread Igor Vaynberg
see GridView -igor On Sun, May 1, 2011 at 9:51 AM, Alexandros Karypidis akary...@yahoo.gr wrote: Hello, I am trying to create a web page that lists contact addresses in a table. My repeater can easily lay out one address per row, but I need to be able to list 2 addresses per row (actually,