Hi, I'm very disappointed. After some investigation it seem it's not possible to instantiate a component in a page on the fly in T5.
I have a page and his template, my component is not defined on the template but on a specific event, I want to create and instantiate this component. I need something like this : @Inject private ComponentClassTransformer componentClassTransformer; private StreamResponse myEvent() { Component component = componentClassTransformer.createInstantiator( My.class).newInstance( BANGGGG !!!!); .... } I can find a instance of InternalComponentResources. This class can't be injected as service. The inspection of the Tapestry code watch me that component creation is very close coupled with Page instantiation Is it possible to instantiate a component on the fly ? Thanks for any informations.