Websockets: Server to browser connection lost?

2017-03-08 Thread Gonzalo Aguilar Delgado
Hello, As I told still doing testing with the web sockets. It seems that a reconnection doesn't fully work. I don't know why. If the connection is the first the browser does. It works nice. The server sends a message to the client (browser) and the browser responds with a request for data.

Re: Access denied

2017-03-08 Thread Zala Pierre GOUPIL
Mmmmh actually, the access denied page appears as soon as the component is clicked! Not just when a value is submitted. On Wed, Mar 8, 2017 at 5:19 PM, Zala Pierre GOUPIL wrote: > No, it doesn't have such calculations. Could the problem be > websockets-related? > > On

Re: Access denied

2017-03-08 Thread Zala Pierre GOUPIL
No, it doesn't have such calculations. Could the problem be websockets-related? On Wed, Mar 8, 2017 at 5:14 PM, Martin Grigorov wrote: > Hi, > > I think your AjaxEditableLabel has logic to calculate whether it is enabled > or not. > It seems it is enabled for the initial

Re: Access denied

2017-03-08 Thread Martin Grigorov
Hi, I think your AjaxEditableLabel has logic to calculate whether it is enabled or not. It seems it is enabled for the initial rendering but later when Wicket tries to post the new value after edit it calculates to 'disabled' Martin Grigorov Wicket Training and Consulting

Access denied

2017-03-08 Thread Zala Pierre GOUPIL
Good afternoon, I use Wicket 7.6.0. When clicking on an AjaxEditableLabel, I get the following message in the logs: behavior not enabled; ignore call. Behavior org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel$LabelAjaxBehavior@1bab91c8 at component [Component id = label] And

Re: wicketstuff-datastore-memcached guide

2017-03-08 Thread Martin Grigorov
Hi, See the tests of the project. https://github.com/wicketstuff/core/blob/master/datastores-parent/datastore-memcached/src/test/java/org/wicketstuff/datastores/memcached/app/MemcachedApplication.java shows how to setup the data store. You can set the hosts and port in IMemcachedSettings. Martin

wicketstuff-datastore-memcached guide

2017-03-08 Thread ssamarin
Hello, I've been looking for a guide/howto for wicketstuff-datastore-memcached, but no luck so far. So, I put 2 new jars in the classpath: wicketstuff-datastore-memcached-7.3.0.jar and spymemcached-2.12.2.jar Is there any configuration parameters somewhere? Like memcached host and port?

Question regarding jquery-ui menu

2017-03-08 Thread Maxim Solodovnik
Hello Sebastien, I would like to create Menu without icons (and without space for icons) I tried to set icon to be null, and icon to be JQueryIcon.NONE, but unfortunately it doesn't help I believe code of Menu.java line 256 need to be changed, to hide icon block if it wasn't specified WDYT? do

Re: Websockets for graph data streaming

2017-03-08 Thread Zala Pierre GOUPIL
Good morning, Would you mind sharing that library with us, please? Regards, Pierre Goupil Le 8 mars 2017 09:28, "Gonzalo Aguilar Delgado" a écrit : > Hi Martin, > > Thank you a lot. I'm almost done!!! > > It's so great. I made a clientside library that allows

Re: Websockets for graph data streaming

2017-03-08 Thread Martin Grigorov
You made my day, Gonzalo! Awesome! On Wed, Mar 8, 2017 at 9:10 AM, Gonzalo Aguilar Delgado < gagui...@level2crm.com> wrote: > Hi Martin, > > Thank you a lot. I'm almost done!!! > > It's so great. I made a clientside library that allows widgets to register > for data streams. And the Websockets

Re: Websockets for graph data streaming

2017-03-08 Thread Gonzalo Aguilar Delgado
Hi Martin, Thank you a lot. I'm almost done!!! It's so great. I made a clientside library that allows widgets to register for data streams. And the Websockets library integrated with Wicket subscribe delivers the specific data to each subscriptor. It takes just one connection. And I loove