wicket:panel to datatable

2010-06-29 Thread midikem
hi! I am wondering how to add a wicket:panel/wicket:panel to a datatable. works to add my panel likte this add(new TestPanel(test)); But how do i add it as an iterating panel in the datatable. My datatable looks like this ListIColumnTest columns = new ArrayListIColumnTest(); columns.add

Re: wicket:panel to datatable

2010-06-29 Thread vov
columns.add(new AbstractColumnTest(new Model()) { @Override public void populateItem(ItemICellPopulatorTest cellItem, String componentId, IModelTest rowModel) { cellItem.add(new TestPanel(componentId)); } }); -- View this message in context: