Re: [Wicket-user] Looking for an example of how to create a component to generate markup

2007-05-18 Thread Igor Vaynberg
see how Label works :) class mycomponent extends webcomponent { oncomponenttagbody(tag) { replacecomponenttagbody(param name='foo'bar/param); } } -igor On 5/17/07, Alessandro Coelho Ribeiro [EMAIL PROTECTED] wrote: Hi, I want to create 2 components in my wicket application. The first one

[Wicket-user] Looking for an example of how to create a component to generate markup

2007-05-17 Thread Alessandro Coelho Ribeiro
Hi, I want to create 2 components in my wicket application. The first one would be a generic component for embedding any flash (SWF) content. The second component would inherit from the 1st one and would be related to a specific flash object we need to embedd in our business application.