uicomponents « Component « JSF Q&A





1. JSF ResponseWriter custom components    stackoverflow.com

I know about startElement, endElement, and writeAttribute methods on ResponseWriter. My problem is that I want to for example output a h:commandLink by declaring it like HtmlCommandLink link = new HtmlCommandLink(); ...

2. How to add existing JSF components to my own custom components?    stackoverflow.com

I have a tag class which extends UIComponent and UIOutput. In this class I have encodeBegin and encodeEnd which I can use my contextWriter to output any kinda html tag I ...

3. Custom Facelets-Tag with multiple Child-Components in h:panelGrid    stackoverflow.com

I have written a custom tag extending UIComponentBase.
It adds multiple Child-Components (UIComponent) during the encodeBegin method. For layouting purposes, I'd like to nest this Child-Components in a h:panelGrid,
but the tag gets ...