Hey, is that a way to dynamicly create ui components using primefaces components?
I know that using pure jsf it's possible! Like this bellow:
form = new HtmlForm();
UIInput input = new HtmlInputText();
input.setId("test");
form.getChildren().add(input);
Can I do this on similar way using Primefaces components?
