Re: Repeater component with dynamic column list

2009-03-26 Thread rora
%-O I've spent a lot of time trying to figure out what's wrong with code and markup but didn't notice this typo. Thanks Martijn You might want to spell wicket correctly in your markup. wikcet is not the valid xmlns prefix :) Martijn -- View this message in context: http://www.nabble.com/

Re: Repeater component with dynamic column list

2009-03-25 Thread rora
Hi Janos, I did what you advised me to do but got the following exception (in this case I used a list of 3 entries with 3 fields): Unexpected RuntimeException WicketMessage: The component(s) below failed to render. A common problem is that you have added a component in code but forgot to referenc

Repeater component with dynamic column list

2009-03-25 Thread rora
Hello, my goal is to display a table with dynamic number of columns (and of course rows) based on my EntryData class. ArrayList entries = ...; public class EntryData implements Serializable { private String entryID; private ArrayList entryFields; [...] } where publi