Top "Composite-component" questions

"Composite Component" is a JSF 2.x / Facelets specific term for reuseable UI components which are declared using pure XML rather than Java.

How to attach ajax event to composite component?

I have the following composite component (<v2:inputText2>) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//…

ajax jsf jsf-2 composite-component
How do I pass an attribute from composite component to backing bean by using backing component?

I have the following code in my facelet page: <hc:rangeChooser1 id="range_chooser" from="#{testBean.from}" to="#{testBean.…

jsf jsf-2 composite-component
javax.el.PropertyNotFoundException with CompositeComponent?

I'm currently trying to build a composite component, and this is how i make use of my component : Include it …

jsf jsf-2 composite-component propertynotfoundexception
Empty id attribute is not allowed in JSF Composite component

I am facing an issue "Empty id attribute is not allowed in JSF" while using the below mentioned composite component …

jsf-2 composite-component
Integrate JavaScript in JSF composite component, the clean way

In JSF, what would be the "right" and "clean" way to integrate JavaScript i.e. into a composite-compenent? I am …

javascript jsf integration composite-component
Remove auto generated j_id from composite components

I'm loving the jsf 2.0 composite component setup. One other thing I love is prependId="false" on forms. Is there an …

jsf composite-component
JSF2 composite component throws PropertyNotFoundException for action method

I have a composite component: <composite:interface> <composite:attribute name="actionMethod" method-signature="java.lang.String action()" required="…

jsf jsf-2 composite-component
JSF composite component with backing bean

I'm trying to get a composite component working with it's own backing bean, using the example on p375 from the …

jsf composite-component
Primefaces outputLabel for composite component

I have an issue with using p:outputLabel when used with composite component. I have composite component with p:inputText …

jsf-2 primefaces composite-component
Is it possible to call parameterized method-signature inside a composite-component?

im currently creating a JSF composite-component with a method signature that can accept parameters. Here's the excerpt : <composite:interface&…

jsf-2 composite-component