Re: Issue using Wicket Bootstap Less

2016-10-06 Thread Erik Strid
Hi, We have tested the new 0.9.20-SNAPSHOT and it seems to be working as expected. Can we make new release request? Regards Erik Strid On Wed, Oct 5, 2016 at 8:18 AM, Tobias Soloschenko < tobiassolosche...@googlemail.com> wrote: > Hi, > > just wanted to thank you for your contributions! :-) >

Re: dependencies

2016-10-06 Thread Martin Grigorov
Here are the docs: https://ci.apache.org/projects/wicket/guide/7.x/guide/nativewebsockets.html#nativewebsockets_2 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Oct 6, 2016 at 6:21 AM, Jonathan Locke wrote: > good question! i

Re: Issue using Wicket Bootstap Less

2016-10-06 Thread Martin Grigorov
I want to do some more changes before the next release. Ping me again if you need it sooner. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Oct 6, 2016 at 8:06 AM, Erik Strid wrote: > Hi, > > We have tested the new 0.9.20-SNAPSHOT

Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Lars Törner
Hi everyone! Is there a best practice in wicket for adding a busy indicator with a delay for an ajax request? Or should it be done with a before handler that executes a javascript that shows the busy indicator after a configured time, and abort this "busy-indicator-script" with an after-handler

Re: Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Rob Audenaerde
Hi Lars, I use a CSS animation for this: .wicket-ajax-indicator { visibility:hidden; animation: appear 0s ease-in 0.5s forwards; } -Rob On Thu, Oct 6, 2016 at 10:58 AM, Lars Törner wrote: > Hi everyone! > > Is there a best practice in wicket for adding a busy indicator

Re: Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Martin Grigorov
Hi Lars, At Apache Isis we use the custom solution for this: https://github.com/apache/isis/blob/master/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/jquery.isis.wicket.viewer.js#L88-L96 At my current project I've used the same approach but directly with jQuery APIs

Re: Your opinion on ShieldUI

2016-10-06 Thread Sebastien
Hi, On Oct 6, 2016 15:22, "Manfred Bergmann" wrote: > > martin-g wrote > > On Oct 5, 2016 7:52 PM, "Manfred Bergmann" > > > mb@ > > > wrote: > >> > >> OK, thanks for you reply. > >> > >> What's the state of Wicket-Foundation? > >> I mean, is it mature enough for a

Re: Your opinion on ShieldUI

2016-10-06 Thread Manfred Bergmann
Sebastien wrote > Hi, > > On Oct 6, 2016 15:22, "Manfred Bergmann" > mb@ > wrote: >> >> martin-g wrote >> > On Oct 5, 2016 7:52 PM, "Manfred Bergmann" >> >> > mb@ >> >> > wrote: >> >> >> >> OK, thanks for you reply. >> >> >> >> What's the state of Wicket-Foundation? >> >> I mean, is it

Re: Your opinion on ShieldUI

2016-10-06 Thread Manfred Bergmann
martin-g wrote > On Oct 5, 2016 7:52 PM, "Manfred Bergmann" > mb@ > wrote: >> >> OK, thanks for you reply. >> >> What's the state of Wicket-Foundation? >> I mean, is it mature enough for a large enterprise application? > > Dunno. > Someone from the community contributed it a while back. > >>

Re: Wicket-jQuery-UI vs. Kendo UI

2016-10-06 Thread Maxim Solodovnik
You can mix components based on your needs and free to mix it :) On Thu, Oct 6, 2016 at 6:48 PM, Bergmann Manfred wrote: > Hello. > > In the wicket-jquery-ui project there are two widget sets, jQuery UI and > Kendo UI. > What’s difference? Are they competing widgets

Re: Wicket-jQuery-UI vs. Kendo UI

2016-10-06 Thread Martin Grigorov
Hi Manfred, The difference is: http://jqueryui.com/ vs. http://www.telerik.com/kendo-ui I.e. there are integrations with these JS UI frameworks. (Pro) means that this is a paid KendoUI widget. You need to pay a licence if you want to use it in a paid product. Martin Grigorov Wicket Training and

Re: Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Lars Törner
Thanks, I'll take a look at your suggestions! Lasse 2016-10-06 11:02 GMT+02:00 Martin Grigorov : > Hi Lars, > > At Apache Isis we use the custom solution for this: > https://github.com/apache/isis/blob/master/core/viewer- >

Re: embed Wicket application on any page

2016-10-06 Thread Ernesto Reinaldo Barreiro
Use an iframe? On Thu, Oct 6, 2016 at 8:14 PM, samket wrote: > Hi, > > Is it possible to embed a Wicket application on any page? A bit like > Google Map. Lets say there is a div element on an arbitrary page and I use > javascript to bring the Wicket application's front page

embed Wicket application on any page

2016-10-06 Thread samket
Hi, Is it possible to embed a Wicket application on any page? A bit like Google Map. Lets say there is a div element on an arbitrary page and I use javascript to bring the Wicket application's front page inside that div. Naturally, I would make sure that the application uses AJAX for

Re: dependencies

2016-10-06 Thread Jonathan Locke
i don't think this is probably a bug in wicket web sockets, but i was wondering if you had any hints how to debug this? one thing i've noticed is that acceptWebSocket always returns false in AbstractUpgradeFilter because there is no "Upgrade" header set. if (!headerContainsToken(req, "Upgrade",

Re: dependencies

2016-10-06 Thread Martin Grigorov
Please create a quickstart and I'll take a look. One thing that I notice is that your app name is the filter class name. Copy/paste in web.xml. But this probably is not the reason. On Oct 7, 2016 5:21 AM, "Jonathan Locke" wrote: > i don't think this is probably a bug

Re: embed Wicket application on any page

2016-10-06 Thread samket
My employer doesn't like iframes. It might be an issue to our customers too. Am I making things too difficult for myself by trying to use Wicket for this? Am I forgetting something vital? I'd like to hear opinions. -Sampo     Sent: Thursday, October 06, 2016 at 10:15 PM From: "Ernesto Reinaldo

Re: dependencies

2016-10-06 Thread Martin Grigorov
This ties you to SimpleWebSocketConnectionRegistry. The application is free to use custom registry impls. Btw it is not allowed to write to the client in #onConnected() callback. The handshake is not finished yet On Oct 6, 2016 6:49 PM, "Jonathan Locke" wrote: > btw,

Re: Localizer in bundle

2016-10-06 Thread Martin Grigorov
You may find this interesting: http://rincl.io/intro Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Oct 6, 2016 at 5:12 AM, Martin Grigorov wrote: > The Component may specify custom locale and/or variation. > java.lang.Class cannot

Re: dependencies

2016-10-06 Thread Jonathan Locke
well this part is solved now. i believe the issue was that jersey wanted an older jetty and web sockets wanted a newer one. regardless, i'm done upgrading to wicket 7 and there are no longer linkage problems. the issue now is that my web socket connection never happens :) i will re-read the docs

Re: Your opinion on ShieldUI

2016-10-06 Thread Sebastien
> > > Sorry for those possibly dump questions. > I'm more the functional UI and backend developer. This styling and layout > should better be done by someone else. But I'd like to understand how it > works. > I personnaly use fundation for the layout part. It works well with kendo (at least), but

Wicket-jQuery-UI vs. Kendo UI

2016-10-06 Thread Bergmann Manfred
Hello. In the wicket-jquery-ui project there are two widget sets, jQuery UI and Kendo UI. What’s difference? Are they competing widgets sets or is one a subset of the other, or can they be mixed? I.e. looking here: http://www.7thweb.net/wicket-jquery-ui/ Something like the DataTable (Pro)

Re: dependencies

2016-10-06 Thread Jonathan Locke
btw, one other thing... a small contribution... it might be nice in wicket 8 or 9 to add a class like the one below (i might have commit rights, but i'm not part of the dev process anymore, so just posting it here). you can store a WebSocketConnection in your page when you get a call to onConnect

7.3 : javascript attached to extended AjaxButton

2016-10-06 Thread sorinev
We are upgrading from 1.4.17 to 7.3. A handful of runtime issues remain now that all the build errors are fixed. One of them is in regards to the AjaxButton, which we extended. In 1.4.17 this was the class The relevant javascript file is After upgrading to 7.3, the update class, to fix

Re: dependencies

2016-10-06 Thread Jonathan Locke
it appears i never get a WebSocketPayload in onEvent. i checked in WebSocketBehavior.renderHead and it's getting in there and rendering JS to set up the web socket, but it never gets to onConnect. add(new WebSocketBehavior() { private static final long serialVersionUID =

Re: dependencies

2016-10-06 Thread Jonathan Locke
and now we see why in the JS error console... WebSocket connection to 'ws://localhost:2016/wicket/websocket?pageId=0=view%3F0=org.apache.wicket.protocol.ws.javax.JavaxWebSocketFilter-14bf9759' failed: Unexpected response code: 404 not sure what this means though... On Thu, Oct 6, 2016 at 9:39