Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread Martin Grigorov
Hi, JBoss uses their own virtual file system and I remember it Wicket-Bootstrap had problems with it before. In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd recommend you to use non-webjars in JBoss from now on. https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337 Martin

Re: Show textfield as plaintext when disabled?

2014-03-21 Thread Martin Grigorov
Hi, I think it is OK to remove 'final' from TextArea's #onComponentTagBody(). Please file a ticket. About the other problem - you cannot just skip Java components when there are HTML elements for them. You either have to use some Panel that shows the read-only version of the radio group, or you

Re: DefaultExceptionMapper-Connection lost, give up responding.

2014-03-21 Thread Martin Grigorov
Hi, This error happens when the browser closes the connection to the server for some reason. The error says that the server cannot write the response back to the browser. I have seen this error with IE when IE switches its modes (compatibility mode, render mode) for some reason. You may have

Re: custom bootstrap stylesheet

2014-03-21 Thread Michael Haitz
it’s a bit simpler… ;) class CcaTheme extends Theme { public CcaTheme() { super(„cca-theme“, new PackageResourceReference(CcaWebApplication.class, customized-bootstrap.css)); } } and during application initialization: settings.setThemeProvider(new

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
Hi Martin I have been wondering about switching to 0.9.3-SNAPSHOT, I have a couple of concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is quite a difference wondering how much I have to change. However the change may be worth it as twbs seems to moving forward quite fast with 3.1.x.

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to build. Will work on migrating to 3.1 and see if that helps. Thanks David On 21 March 2014 11:43, David Beer david.m.b...@gmail.com wrote: Hi Martin I have been wondering about switching to 0.9.3-SNAPSHOT, I have a

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread Martin Grigorov
We didn't have to do any refactorings to upgrade Wicket-Bootstrap from 3.0 to 3.1. As usual - let us know if you have any issues! Martin Grigorov Wicket Training and Consulting On Fri, Mar 21, 2014 at 2:12 PM, David Beer david.m.b...@gmail.com wrote: I have decided to switch to

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
Hi Martin After having updated my local source and built 0.9.3-SNAPSHOT added it to my pom and changed the statement in WicketApplication I get the following error and unable to deploy. Caused by: java.lang.IllegalStateException: you have to call WicketWebjars.install() before you can use an

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread Martin Grigorov
Please paste the full stacktrace so we can see what triggers the load of WebjarsVersion$Holder. Better do it in GitHub issues. Thanks! Martin Grigorov Wicket Training and Consulting On Fri, Mar 21, 2014 at 2:37 PM, David Beer david.m.b...@gmail.com wrote: Hi Martin After having updated my

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
Hi Martin Have created a new issue. After a bit more research this seems to be becasue of loading a theme. Full Stacktrace and code in issue https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/344. Thanks David On 21 March 2014 12:50, Martin Grigorov mgrigo...@apache.org wrote: Please

Re: custom bootstrap stylesheet

2014-03-21 Thread Gabriel Landon
Here's what I'm doing with a less reference (would be the same for css). public abstract class AbstractPage extends WebPage { /** Less/css reference. */ private static final LessResourceReference MY_LESS_REFERENCE = new LessResourceReference(AbstractPage .class, css/style.less);