Re: AjaxRequestTarget is null in Internet Explorer 6

2008-09-23 Thread mahone9
code defines an onClick in the panel, it doesn't override your Link's onclick. On Mon, 22 Sep 2008 03:16:47 -0700 (PDT), mahone9 [EMAIL PROTECTED] said: I still have that problem and why is sb. responding to another thread... mahone9 wrote: Hi all I´m struggeling

Re: AjaxRequestTarget is null in Internet Explorer 6

2008-09-23 Thread mahone9
On Tue, Sep 23, 2008 at 11:10 AM, mahone9 [EMAIL PROTECTED] wrote: Oh my goodness, I missed to add the instantiation of the AjaxFallbackLink to my example. The error still exists. I post you the right code-snipet. Sorry for the inconvience ... public class MenuePanel extends Panel

Re: AjaxRequestTarget is null in Internet Explorer 6

2008-09-22 Thread mahone9
I still have that problem and why is sb. responding to another thread... mahone9 wrote: Hi all I´m struggeling with the AjaxFallbackLink the target object is null, if it runs to the onClick() method. In Firefox and Opera it works fine!!! class MyPanel extends Panel

Re: AW: Wicket and Mootools?

2008-09-19 Thread mahone9
I think I´m gonna use scriptaculous. It´s much more easier to use it and I guess you can also compress the js files as mootools does. Scriptaculous provides almost that much effects as mootools. JQuery is very poor on effects... Nino.Martinez wrote: Agent Mahone wrote: O, thank u very

integration Spring/Wicket/Hibernate problem with injection bean

2008-09-12 Thread mahone9
Hi @all I´m new to spring and wicket. I´d like to know how is it possible to inject wicket beans in a smart way??? My preconditions are: using jdk 1.4 for example: my applicationContext.xml file looks like. bean id=loginPanel class=example.login.LoginPanel singleton=false property

Re: integration Spring/Wicket/Hibernate problem with injection bean

2008-09-12 Thread mahone9
Thanks for ur quick response. I already read this article. But I don´t like this approach calling this creation Proxy stuff when I need it for from a Wicket-Bean. private ContactDao dao = LazyInitProxyFactory.createProxy(ContractDao.class, new IProxyTargetLocator() { public Object

Re: integration Spring/Wicket/Hibernate problem with injection bean

2008-09-12 Thread mahone9
Hmmm, i thought about it too. But is it the best practise or an acceptable hack ??? With ur mentioned approach I have always to be aware of wicket beans in order to handle them in that special way. Is it somehow possible to hook into any bean instantiation class (or beanFactory etc.)... and