[Wicket-user] Wicket minis : use of Veil

2007-05-25 Thread NickCanada
Hi there Is it possible for someone to give me an example of how to implement a Veil from the Wicket Minis contrib? if I add a veil to a component I just get java.lang.IllegalStateException: This behavior is already bound to component... Looking at the source I see that if (component != null)

Re: [Wicket-user] Wicket minis : use of Veil

2007-05-25 Thread NickCanada
Igor - I just replaced if (component != null) with if (component == null) and it seems to work... -- View this message in context: http://www.nabble.com/Wicket-minis-%3A-use-of-Veil-tf3817418.html#a10807555 Sent from the Wicket - User mailing list archive at Nabble.com.

[Wicket-user] logging exception with Sun Application Server and Examples

2007-04-19 Thread NickCanada
Hi, I can't deploy the wicket examples (1.3) from the svn repository using the Sun Application Server (glassfish v2 b43). It was working in some previous wicket 1.3 version but now I get: Exception sending context initialized event to listener instance of class

Re: [Wicket-user] logging exception with Sun Application Server and Examples

2007-04-19 Thread NickCanada
Indeed that solved the problem, thanks. I put the log4j jar in the class path et voila. Googling about the problem gave me the impression that I should eek out part of my day to read up on logging. Commons-logging seems bring up gripes with people suggesting slf4j is the way to go. This all

Re: [Wicket-user] Today's wicket1.X breaks GridView + Dynamic Resource

2007-03-23 Thread NickCanada
, NickCanada [EMAIL PROTECTED] wrote: Hi Guys, Thanks for all your Wicket work. Using the latest Wicket1.X (23rdMarch) from SVN, my code which puts RenderedDynamicImageResource objects in a GridView no longer works (prior versions ran fine). The instead of displaying the dynamic

Re: [Wicket-user] Show a disabled ImageButton

2006-12-06 Thread NickCanada
Thanks so much for your reply. I'm on a learning curve with all this. So with a standard wicket form button I can override the onComponentTag: protected void onComponentTag(ComponentTag tag){ tag.put(disabled,

[Wicket-user] Show a disabled ImageButton

2006-12-05 Thread NickCanada
I have an ImageButton used to submit a form. I extended the RenderedDynamicImageResource class so that I have a transparent background but now I want to show the button in a disabled state. It seems when the FormComponent class launches onDisabled(ComponentTag tag) my ImageButton is not drawn at