Re: EventBus.push not pushing data to subscribe method

2013-07-11 Thread dlock
If you use the Google Guava library, make sure the import associated with the @Subscribe annotation is org.apache.wicket.atmosphere.Subscribe and not com.google.common.eventbus.Subscribe -- View this message in context:

AjaxCallListener and script of Component

2013-07-11 Thread Altuğ Bilgin Altıntaş
Hi all; We are trying to migrate from Wicket 1.4 to 6.9.0. We encountered a strange problem. Here is the migrated code (which is working incorrectly): @Override protected void updateAjaxAttributes(AjaxRequestAttributes attributes) { super.updateAjaxAttributes(attributes);

Re: AjaxCallListener and script of Component

2013-07-11 Thread Martin Grigorov
Hi, Read https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-o.a.w.ajax.IAjaxCallDecoratorisreplacedwitho.a.w.ajax.attributes.IAjaxCallListener. On Thu, Jul 11, 2013 at 3:38 PM, Altuğ Bilgin Altıntaş alt...@gmail.comwrote: Hi all; We are trying to migrate from Wicket

Re: wicket-atmosphere - How to unsubscribe?

2013-07-11 Thread dlock
A quick update... After upgrading to the latest versions (wicket-6.9.0, wicket-atmosphere-0.11 atmosphere-runtime-1.0.13) I was still experiencing the issue. However I noticed that some of the retained pages where being held by Jetty specific classes (I was profiling the app locally via

Re: AjaxCallListener and script of Component

2013-07-11 Thread Altuğ Bilgin Altıntaş
Thanks. On Thu, Jul 11, 2013 at 3:42 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, Read https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-o.a.w.ajax.IAjaxCallDecoratorisreplacedwitho.a.w.ajax.attributes.IAjaxCallListener . On Thu, Jul 11, 2013 at 3:38 PM,

Upgrade to wicket 6 giving blank page in IE 9

2013-07-11 Thread prasad.bhandagi
Hi, Am currently upgrading my project to wicket 6.9 Am facing a sporadic issue where sometimes page comes up blank (Only the image placed at top of page comes fine). This error comes on any random screen (not specific to a certain screen). I tried to narrow down the scenario when this error

Re: Upgrade to wicket 6 giving blank page in IE 9

2013-07-11 Thread Cedric Gatay
Hi, what is the server environment you're facing this issue with? Did you change something else than Wicket version ? From which one are you coming from ? Thanks for the answers ! __ Cedric Gatay (@Cedric_Gatay http://twitter.com/Cedric_Gatay) http://code-troopers.com | http://www.bloggure.info

Re: Upgrade to wicket 6 giving blank page in IE 9

2013-07-11 Thread prasad.bhandagi
Am upgrading from Wicket 1.3. However I am upgrading it step by step for each major version. The problem did not occur when upgraded to 1.4 and 1.5. Only after upgrading to 6.9 the problem started occuring. Am using Weblogic 10.3, JDK6 -- View this message in context:

RE: Upgrade to wicket 6 giving blank page in IE 9

2013-07-11 Thread Paul Bors
Let me guess, the image that always shows up is a static resource w/o any wicket id? I remember I had a similar problem and if you look inside your webapp server logs you would see the errors/warnings from Wicket. If I remember right I fixed it by sticking to strict HTML 4.01. Try adding the

DateTextField, image is displayed on line below

2013-07-11 Thread Delange
I use css for positioning my fields, but Datatextfield ICON is always displayed a line below the input For example: Orderdate B date icon Who can help? css .regel{ clear:left; } .t1{ display: inline-block;

Problem with swapping panels using Ajax links

2013-07-11 Thread Chris Whitcomb
I have a page that I swap 2 panels - read and edit. On the read panel, the edit button is an AjaxFallbackLink. In the onClick, I replace the read panel with the edit panel. This button works correctly - the panel gets swapped out. On the edit panel, I have 2 buttons - cancel which is an

RE: DateTextField, image is displayed on line below

2013-07-11 Thread Paul Bors
You do realize this is not a Wicket direct question but a CSS one right? I would try running your code through one of the many tutorials on say w3schools.com: http://www.w3schools.com/css/ Good luck! -Original Message- From: Delange [mailto:delan...@telfort.nl] Sent: Thursday, July 11,

Re: DateTextField, image is displayed on line below

2013-07-11 Thread Dieter Tremel
I used white-space: nowrap; on the containing element. Dieter Am 11.07.2013 23:23, schrieb Delange: I use css for positioning my fields, but Datatextfield ICON is always displayed a line below the input For example: Orderdate B

Re: WICKET-5083 and Page.isPageStateless

2013-07-11 Thread Dirk Forchel
We've added a TransactionRequestCycleListener (extends AbstractRequestCycleListener). This class handles transactions mainly like this: @Override public void onRequestHandlerResolved(final RequestCycle cycle, final IRequestHandler handler) { LOGGER.debug( start transaction --- +

RE: Problem with swapping panels using Ajax links

2013-07-11 Thread Paul Bors
What do you mean by swapping panels? Are you using Component.replace()? And why would you when you could do all this in-line (the same way as the new version of Jira does it)? Try this live example: 1) Log on to http://Wicket.Apache.org 2) From under the Learn left navigation menu select the

RE: DateTextField, image is displayed on line below

2013-07-11 Thread Paul Bors
Tell you what, save the HTML file in your IE9 and let us have a look at it. You made me curious now :) ~ Thank you, Paul Bors -Original Message- From: Dieter Tremel [mailto:tre...@tremel-computer.de] Sent: Friday, July 12, 2013 12:24 AM To: users@wicket.apache.org Subject: Re: