JSF - dynamic fields
hello.
can anyone help me with that problem in JSF:
every time the <button_jsf> is clicked and the 'action' is invoked
the new component (containing 2 text input fields) is rendered in the <component_jsf>. What should be type of this component: UIPanel, UIComponent?
i've tried to do this using renderers, custom tags but without any success:/
[jsp page]
...
<button_jsf actionListener="action" />
<form_jsf>
<component_jsf>
[<this 2 input text fields are being rendered every time the'action' is invoked>]
...
</component_jsf>
</form_jsf>
...
[jsp page]
-
thanks,
matt

