Hi,
I`ve developed a component to create a dynamic panel with a renderer
class, but the renderer could not be called. The rendering works if the
compoent class renders the output stream.
I don`t know how i can configure the renderer for the new component in
tobago.
faces-config.xml:
<component>
<description>The dynamic panel component.</description>
<display-name>DynamicPanel</display-name>
<!-- The name for registering the component. -->
<component-type>extn.DynamicPanel</component-type>
<!-- The implementation class. -->
<component-class>web.components.UIDynamicPanel</component-class>
<component-extension>
<renderer-type>extn.DynamicPanelRenderer</renderer-type>
</component-extension>
</component>
<render-kit>
<renderer>
<description>Renderer for DynamicPanel.</description>
<component-family>extn.DynamicPanelFamily</component-family>
<renderer-type>extn.DynamicPanelRenderer</renderer-type>
<renderer-class>web.components.DynamicPanelRenderer</renderer-class>
</renderer>
</render-kit>
Regards,
Hani