Re: Wicket 9.x and wicket-bootstrap status

2019-09-23 Thread Michał Szwaczko
Thanks Martin :) > Dnia 23 września 2019 o 15:54 Martin Grigorov < mgrigo...@apache.org > mailto:mgrigo...@apache.org > napisał(a): > > > Wicket Bootstrap 4.0.0-M3 (Wicket 9.0.0-M3 and Bootstrap 3.x) has been > released! > > The other versions will be released on the coming day

Re: Accessing tags with repeaters

2016-08-28 Thread Michał Szwaczko
On Sun, 28 Aug 2016 09:15:29 +0200 Martin Grigorov wrote: > Actually here you need something like: > WebMarkupContainer td = new WebMarkupContainer(row.newChildId()); > td.add(some_component); > ... > > So you can do: td.add(AttributeModifier.append(...)); > or even override its #onComponentTag(

Accessing tags with repeaters

2016-08-27 Thread Michał Szwaczko
Hello I have a simple repeater that dynamically assemblies a row of a table from default components (labels, panels, buttons etc) The row is part of the dataview. RepeatingView row = new RepeatingView("row"); [in Dataview's populateItem I set components] row.add(some