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
List<IColumn<Test>> columns = new ArrayList<IColumn<Test>>();
columns.add(newPropertyColumn<Test>(new
StringResourceModel("test",this,null), null, "test"));
add(new DefaultDataTable<Test>("dataTable", columns, provider, 30));

and html:
<wicket:extend>
<table wicket:id="dataTable" class="dataview">[dataTable]</table>
</wicket:extend>
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/wicket-panel-to-datatable-tp2272180p2272180.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to