Re: [Wicket-user] DataTable toolbars result in invalid HTML

2006-08-18 Thread Igor Vaynberg
fixed calling setrenderbodyonly on the repeaters has no effect because repeaters themselves render no markup.if you look at the markup:                the first span was already supressed by calling item.setRenderBodyOnly(true); on the direct child of the repeater the second span is actually owned

[Wicket-user] DataTable toolbars result in invalid HTML

2006-08-18 Thread Jan Schlosser
Hi all, the resulting HTML of extension's DataTable (with toolbars) renders invalid according to the HTML specs: Java: > IColumn[] columns = new IColumn[2]; > columns[0] = new PropertyColumn(new Model("foo"), "foo"); > columns[1] = new PropertyColumn(new Model("bar"), "bar"); > > IDataProvider