Re: Wicket-Atmosphere IE8 Issue

2013-10-10 Thread Martin Grigorov
Hi, Try with plain Atmosphere app. If the problem reproduces then ask in Atmosphere mailing list. If not - create a ticket in Wicket's JIRA. Next time also provide the versions of the libraries On Thu, Oct 10, 2013 at 8:54 PM, wsuetholz wrote: > Hello, > We are having a problem that is repr

Wicket-Atmosphere IE8 Issue

2013-10-10 Thread wsuetholz
Hello, We are having a problem that is reproducible with the wicket atmosphere example. Every so often updates(Pushes) will stop being processed by the browser. If we refresh the page on the browser, the problem will go away for awhile, but will eventually happen again. It doesn't seem to matt

Re: AjaxEditableLabel as Filter in FormFilter?

2013-10-10 Thread Rodrigo Heffner
Thank you, Martin On 10 October 2013 15:26, Martin Grigorov wrote: > AjaxEditableLabelFilter.html should be: > > http://wicket.apache.org";> > > > > AjaxEditableLabel is a Panel, not a TextField. > > > > On Thu, Oct 10, 2013 at 4:58 PM, Rodrigo Heffner > wrote: > > > There you go. Thank y

Re: Question / Wicket 6 Events / generic payload

2013-10-10 Thread Martin Grigorov
Hi, Wicket's default #onEvent() cannot use the event type due to technical problems. But different impls of IEventDispatcher can give you the proper type. See https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/annotationeventdispatcher-parent for example. On Mon, Oct 7, 2013 at 3:47

Re: Problem with back space and the AjaxNewWindowNotifyingBehavior in wicket 1.5.10

2013-10-10 Thread Martin Grigorov
Hi, Where is the browser focus when the user use the Backspace key ? Do you mean "go back in the history" just as with browser's back button ? On Thu, Oct 10, 2013 at 4:59 PM, wrote: > Hi, > > we are using the AjaxNewWindowNotifyingBehavior and it works fine. Except > if someone press backspac

Re: CryptoMapper and mounted pages.

2013-10-10 Thread Dmitry Kornilov
Take a look here: https://issues.apache.org/jira/browse/WICKET-4140 I suppose that BookmarkableCryptoMapper attached to that Jira case is what you're looking for. Regards, Dmitry -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CryptoMapper-and-mounted-pages-tp4661

Question / Wicket 6 Events / generic payload

2013-10-10 Thread Patrick Davids
Hi all, why does component send method uses generic payload T, but onEvent of Components receives events? I need to cast it anyway? Whats the benefit of having generics here? kind regards Patrick - To unsubscribe, e-mail: user

Problem with back space and the AjaxNewWindowNotifyingBehavior in wicket 1.5.10

2013-10-10 Thread joerg.meister.ext
Hi, we are using the AjaxNewWindowNotifyingBehavior and it works fine. Except if someone press backspace. If the behavior is added to a page, a window name will be generated and stored in the behavior instance and the tab name will be set. If a page instance is requested again, the AjaxNewWind

Re: AjaxEditableLabel as Filter in FormFilter?

2013-10-10 Thread Martin Grigorov
AjaxEditableLabelFilter.html should be: http://wicket.apache.org";> AjaxEditableLabel is a Panel, not a TextField. On Thu, Oct 10, 2013 at 4:58 PM, Rodrigo Heffner wrote: > There you go. Thank you. > > > On 10 October 2013 13:15, Martin Grigorov wrote: > >> Please create a quickstart a

Re: AjaxEditableLabel as Filter in FormFilter?

2013-10-10 Thread Martin Grigorov
Please create a quickstart app or GitHub project so we can debug it. I have no idea why it behaves this way at the moment. On Thu, Oct 10, 2013 at 12:39 PM, Rodrigo Heffner wrote: > Ok, so when I use an AjaxEditableLabel as a filter I come across these > problems: > > 1) Incorrect state when I

Re: AjaxEditableLabel as Filter in FormFilter?

2013-10-10 Thread Rodrigo Heffner
Ok, so when I use an AjaxEditableLabel as a filter I come across these problems: 1) Incorrect state when I open a page with the AjaxEditableLabel as a FilterForm filter Expected: the column with an AjaxEditableLabel as a filter should display "..." on it's header Actual: the column with an AjaxEdi

Re: AjaxEditableLabel as Filter in FormFilter?

2013-10-10 Thread Martin Grigorov
On Thu, Oct 10, 2013 at 12:04 PM, Rodrigo Heffner wrote: > Hi Sebastien, > > Sorry - I should have written a bit more about what I'm trying to achieve. > > I want to have an AjaxEditableLabel as a Filter (column header), but just > overriding getFilter and providing a filter class with an AjaxEdi

Re: AjaxEditableLabel as Filter in FormFilter?

2013-10-10 Thread Rodrigo Heffner
Hi Sebastien, Sorry - I should have written a bit more about what I'm trying to achieve. I want to have an AjaxEditableLabel as a Filter (column header), but just overriding getFilter and providing a filter class with an AjaxEditableLabel doesn't work for me. Here's my class: public class AjaxEd

Re: How to localize options in drop down.

2013-10-10 Thread cosmindumy
Mission accomplished. I used the method with *.utf8.properties. I'm sure the properties in xml files had also worked. Wicket localization is great. Thanks for helping. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-localize-options-in-drop-down-tp4661751p

Re: Adding Wicket to an existing project with Guice

2013-10-10 Thread Martin Dietze
On Thu, October 10, 2013, Martin Grigorov wrote: > You can > use > org.apache.wicket.guice.GuiceComponentInjector#GuiceComponentInjector(Application > app, Injector injector) constructor. > I.e. in MyApp#init() do: > > getComponentInstantiationListeners().add(new GuiceComponentInjector(this, > i

Re: Adding Wicket to an existing project with Guice

2013-10-10 Thread Martin Grigorov
Hi, You can use org.apache.wicket.guice.GuiceComponentInjector#GuiceComponentInjector(Application app, Injector injector) constructor. I.e. in MyApp#init() do: getComponentInstantiationListeners().add(new GuiceComponentInjector(this, injectorReadFromServletContext)) On Thu, Oct 10, 2013 at 10:

Adding Wicket to an existing project with Guice

2013-10-10 Thread Martin Dietze
On a legacy project, there are two web frameworks in use, one for the frontend, one for the backoffice application. This project already uses Guice which is instanciated by a ContextListener which also does some initialisation code, like pulling up some particular Guice beans. Now in this project