Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Ernesto Reinaldo Barreiro
gt;> > > >> > >> I've done a simple behavior that I add to the select2 component > > when > > >> > >> needed. > > >> > >> > > >> > >> public class Select2CssBehavior extends Behavior { > > >> > >>/** serialVersion

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Maxim Solodovnik
t; when > >> > >> needed. > >> > >> > >> > >> public class Select2CssBehavior extends Behavior { > >> > >>/** serialVersionUID. */ > >> > >>private static final long serialVersionUID = 1L; > >> > >>/** Select2 C

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Ernesto Reinaldo Barreiro
/** serialVersionUID. */ >> > >>private static final long serialVersionUID = 1L; >> > >>/** Select2 CSS for bootstrap. */ >> > >>private static final CssResourceReference SELECT2_CSS = new >> > >> CssResourceReference(Select2CssBehavior.c

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Ernesto Reinaldo Barreiro
> > >>/** Select2 CSS for bootstrap. */ > > >>private static final CssResourceReference SELECT2_CSS = new > > >> CssResourceReference(Select2CssBehavior.class, > > >>"select2-bootstrap.css"); > > >> > > >>@Ove

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Maxim Solodovnik
urceReference(Select2CssBehavior.class, > >>"select2-bootstrap.css"); > >> > >>@Override > >>public void renderHead(final Component varComponent, final > >> IHeaderResponse varResponse) { > >>super.renderHead

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Tom Götz
esponse); >> varResponse.render(CssHeaderItem.forReference(SELECT2_CSS)); >>} >> >> } >> >> >> -- >> View this message in context: >> http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p467.html

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Ernesto Reinaldo Barreiro
public void renderHead(final Component varComponent, final > IHeaderResponse varResponse) { > super.renderHead(varComponent, varResponse); > varResponse.render(CssHeaderItem.forReference(SELECT2_CSS)); > } > > } > > > -- > View this message in context: > htt

Re: wicketstuff-select2 and Bootstrap 3

2016-01-14 Thread Gabriel Landon
Response.render(CssHeaderItem.forReference(SELECT2_CSS)); } } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p467.html Sent from the Users forum mailing list archiv

Re: wicketstuff-select2 and Bootstrap 3

2016-01-14 Thread Martin Grigorov
> On Wed, Jan 13, 2016 at 8:45 PM, Gabriel Landon wrote: > > > Have you tried with this one : > > https://github.com/select2/select2-bootstrap-theme > > > > regards, > > Gabriel. > > > > -- > > View this message in context: > > > http://

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Ernesto Reinaldo Barreiro
16 at 8:45 PM, Gabriel Landon wrote: > Have you tried with this one : > https://github.com/select2/select2-bootstrap-theme > > regards, > Gabriel. > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-t

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Gabriel Landon
Have you tried with this one : https://github.com/select2/select2-bootstrap-theme regards, Gabriel. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p4673317.html Sent from the Users forum mailing list archive at Nabble.com

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Gabriel Landon
Sorry, I'm still using select2 V3.5. I did not know the wicketstuff-select2 had been upgraded to V4. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p4673316.html Sent from the Users forum mailing list archive at Nabbl

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Ernesto Reinaldo Barreiro
te: > >> Hi Tom, >> >> This is the one I use : >> https://fk.github.io/select2-bootstrap-css/ >> >> regards, >> Gabriel. >> >> -- >> View this message in context: >> http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Boo

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Ernesto Reinaldo Barreiro
ache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p4673313.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.o

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Gabriel Landon
Hi Tom, This is the one I use : https://fk.github.io/select2-bootstrap-css/ regards, Gabriel. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicketstuff-select2-and-Bootstrap-3-tp4673303p4673313.html Sent from the Users forum mailing list archive at Nabble.com

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Tom Götz
Yeah, the CSS (after finished with playing) is exactly what I’d like to see ;-) Tom > On 13.01.2016, at 14:52, Ernesto Reinaldo Barreiro wrote: > > I use them both together in my current project but I haven't got to the > point where styling it is a priority: I did that before for a previou

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Ernesto Reinaldo Barreiro
I use them both together in my current project but I haven't got to the point where styling it is a priority: I did that before for a previous version of select2 and it was mostly playing with CSS. On Wed, Jan 13, 2016 at 2:47 PM, Tom Götz wrote: > Hi there, > > does anybody have a working examp

wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Tom Götz
Hi there, does anybody have a working example for wicketstuff-select2 single/multi choices styled in Bootstrap 3 layout? I’m currently going bananas trying to integrate those into our Bootstrap-styled application. Any hint is welcome! Cheers, Tom --