Re: IComponentResolver question

2007-12-06 Thread Matthijs Wensveen
Igor Vaynberg wrote: icomponentresolver does exactly what its javadoc says - match markup tags to components. if you want you can create those components on the fly - but remember that this happens at render time so it might have some side effects for you. The javadoc mentions "component na

Re: IComponentResolver question

2007-12-05 Thread Igor Vaynberg
icomponentresolver does exactly what its javadoc says - match markup tags to components. if you want you can create those components on the fly - but remember that this happens at render time so it might have some side effects for you. you dont need to rewrite your panel as a component resolver an

IComponentResolver question

2007-12-05 Thread Matthijs Wensveen
Hello, I have developed a panel named AutoComponentPanel that automatically adds wicket components based on (dynamic) markup. Looking at IComponentResolver I noticed some similarities. Can someone explain this class and its uses to me? Is it something that I should want to use for AutoComponentP

IComponentResolver question. Was: How to dynamically generate HTML page?

2007-12-04 Thread Matthijs Wensveen
I was looking at the code of AutoComponentPanel and found similarities between this and IComponentResolver. AutoComponentPanel has an overridable getMarkupComponent(ComponentTag, MarkupStream) where IComponentResolver has resolve(MarkupContainer, MarkupStream, ComponentTag). Can someone explain