Re: Apache Wicket 1.5.4 is released

2012-02-05 Thread Kayode Odeyemi
Does this mean this is the recommended branch to work from? There's a fix on 1.5 RC5 that I need. Is it advisable to work off wicket dev releases as against official releases? When will 1.5 RC5 slated for full release? Thanks On Mon, Jan 23, 2012 at 9:54 AM, Per Newgro per.new...@gmx.ch wrote:

Re: ResourceReference for resource in webapp dir

2012-02-05 Thread Kayode Odeyemi
On Fri, Feb 3, 2012 at 3:40 PM, Bertrand Guay-Paquet ber...@step.polymtl.ca wrote: Hi, I have the following code in my base page: public void renderHead(IHeaderResponse response) { // scripts/jquery-1.7.1.min.js is in webapp dir

Behavior lost after setVisible(false)

2012-02-05 Thread Lukáš Šembera
Hi, I've a component with an AjaxSelfUpdatingTimerBehavior attached. After calling setVisible(false) and than setVisible(true) on the, the self-updating behavior is gone (strictly speaking the Behavior is still attached to the component, but it's not updating). Could you explain me the rationale

Re: Wicket-Source: Click-through from browser back to Java source

2012-02-05 Thread Jenny Brown
Chrome extension is available in the github downloads area now. The extension uses devtools APIs (but no longer experimental) which are currently only ready in the chrome dev channel version. However the plugin should be stable, so as chrome moves into beta and then stable release I believe it

Re: Unnecessary 302 redirects in Wicket 1.5

2012-02-05 Thread TH Lim
This worked. It didn't do a POST/REDIRECT/GET when I posted from Javascript and/or HTML Form. This solution works great because, as you mentioned, I can use @SpringBean and other Wicket features along side with it. Thanks. -- View this message in context:

Re: Communication (in-vm) between webapps

2012-02-05 Thread Bas Gooren
Thanks Jeremy! Since I needed something up running quickly I have implemented the flush cache operation through a page with pre-shared key auth for now. Op 4-2-2012 15:04, schreef Jeremy Thomerson: I agree a messaging queue is a nice scalable system. But I also think pragmatic approaches

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-05 Thread Martin Grigorov
Hi, On Sat, Feb 4, 2012 at 3:25 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi, thanks. On Fri, Feb 3, 2012 at 8:05 PM, Serban.Balamaci thespamtr...@gmail.comwrote: Hello, It's not really clear what you mean and maybe you need to tell us what you want to do. I want to use servlet

Re: Setting/changing id for components after creation.

2012-02-05 Thread Martin Grigorov
Hi, You can use: new ChildPanel(parent.getChildId()) This is how ModalWindow works, and many of the repeater components in Wicket On Sun, Feb 5, 2012 at 12:12 AM, msalman mohammad_sal...@yahoo.com wrote: I have a panel which adds another child panel created by other users.  The problem for me

Re: Apache Wicket 1.5.4 is released

2012-02-05 Thread Martin Grigorov
On Sun, Feb 5, 2012 at 1:51 PM, Kayode Odeyemi drey...@gmail.com wrote: Does this mean this is the recommended branch to work from? There's a fix on 1.5 RC5 that I need. Is it advisable to work off wicket dev releases as against official releases? When will 1.5 RC5 slated for full release?

Re: Behavior lost after setVisible(false)

2012-02-05 Thread Martin Grigorov
Hi, Check for errors in the Ajax debug window. Maybe you didn't call component.setOutputMarkupPlaceholderTag(true) and later the behavior wasn't able to find the component markup. 2012/2/5 Lukáš Šembera sembe...@gmail.com: Hi, I've a component with an AjaxSelfUpdatingTimerBehavior attached.