Maybe for that we can use the CSS from the same project Gabriel mentioned: as it was 3.x compatible. For the rest there isn't anything 7.X specific I think.
On Fri, Jan 15, 2016 at 11:23 AM, Maxim Solodovnik <[email protected]> wrote: > I believe same fix (but different CSS) can be applied to wicket-6 > > On Fri, Jan 15, 2016 at 4:21 PM, Tom Götz <[email protected]> wrote: > > > Any chance for a Bootstrap theme (backport) for wicketstuff 6.x (i.e. > > select2 version 3.x) …? We are currently still using Wicket 6.x and can’t > > update yet because of infrastructure restrictions (app server not > > supporting Java 7 :-/ ) … > > > > Cheers, > > Tom > > > > > > > On 15.01.2016, at 10:02, Ernesto Reinaldo Barreiro <[email protected] > > > > wrote: > > > > > > Gabriel, > > > > > > Thanks for sharing! I ended up doing it a bit differently in order to > be > > > more compatible with existing select2 component. See > > > > > > https://github.com/wicketstuff/core/pull/453 > > > > > > @martin-g, @solomax, > > > > > > Sorry again about white spaces vs tabs noise: I need to find some time > to > > > fix that on my idea settings :-( > > > > > > > > > On Thu, Jan 14, 2016 at 6:58 PM, Gabriel Landon <[email protected]> > wrote: > > > > > >> Ernesto, > > >> > > >> I've done a simple behavior that I add to the select2 component when > > >> needed. > > >> > > >> public class Select2CssBehavior extends Behavior { > > >> /** serialVersionUID. */ > > >> private static final long serialVersionUID = 1L; > > >> /** Select2 CSS for bootstrap. */ > > >> private static final CssResourceReference SELECT2_CSS = new > > >> CssResourceReference(Select2CssBehavior.class, > > >> "select2-bootstrap.css"); > > >> > > >> @Override > > >> public void renderHead(final Component varComponent, final > > >> IHeaderResponse varResponse) { > > >> super.renderHead(varComponent, varResponse); > > >> varResponse.render(CssHeaderItem.forReference(SELECT2_CSS)); > > >> } > > >> > > >> } > > >> > > >> > > >> -- > > >> View this message in context: > > >> > > > http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p4673333.html > > >> Sent from the Users forum mailing list archive at Nabble.com. > > >> > > >> --------------------------------------------------------------------- > > >> To unsubscribe, e-mail: [email protected] > > >> For additional commands, e-mail: [email protected] > > >> > > >> > > > > > > > > > -- > > > Regards - Ernesto Reinaldo Barreiro > > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > > > -- > WBR > Maxim aka solomax > -- Regards - Ernesto Reinaldo Barreiro
