"Composite Component" is a JSF 2.0 / Facelets specific term for reuseable UI components which are declared using pure XML rather than Java. The composite component XML declaration tags are available under the namespace `http://java.sun.com/jsf/composite`.
1
vote
1answer
32 views
Dynamically build the column values
I am building a component that will build a data table dynamically. I need to pass in the field name from the class and concatenate it to the var attribute of the table. example : "tblVar.firstName". ...
0
votes
0answers
65 views
valueChangeListener in ui:repeat gets always triggered for first component
i got some problems using a valueChangeListener on a h:selectOneMenu within an ui:repeat wrapped in a composite-component.
The valuechangeListener gets always triggered for the first ComboBox, even, ...
0
votes
1answer
33 views
Jsf composite component not working
I am getting "/pages/addressBook.xhtml @171,105 Tag Library supports namespace: http://java.sun.com/jsf/composite/compositeComponents, but no tag was defined for name: mailInputText" error.
here is ...
0
votes
0answers
50 views
How to retrieve value of a ui:param in the backing bean of same page
i want to retrieve the value of ui:param in my backing bean but from same page not while navigating from page to pagei tried :
FaceletContext faceletContext = (FaceletContext) ...
0
votes
0answers
32 views
validator for custom components in JSF fails
In my custom component, I have
<composite:interface>
<composite:editableValueHolder name="val_pwd" targets="form:pwd"/>
<composite:attribute name="name" required="true"/>
...
0
votes
1answer
52 views
render composite component based on a Boolean condition
I developed a composite JSF 2 component, and it is working pretty well.
In one of the pages where I use my custom component, it is necessary that composite component should be rendered according to a ...
0
votes
0answers
20 views
JSF composite component Resource bundle
Is there a way to incorporate locale specific keys into a composite component(CC)?
For ex, in my resources/util dir, I have my CC ic.xhtml, ic.properties, ic_de.properties
In ic.properties, I have,
...
-2
votes
0answers
30 views
use a composite component in another composite component [closed]
I have a composite component util:outputText which I would like to use in another composite component util:message, but it does not work, why ?
thanks,
0
votes
1answer
61 views
Ajax-update another component inside same composite component
When using ajax inside a composite component, the ajax feature isn't working. What's wrong with the code?
the composite component:
<composite:interface>
<composite:attribute ...
2
votes
1answer
34 views
It's possible to define an default ID to a composite component?
It's possible to define a default ID for an composite component created with <ui:component>?
Even if I set the ID in <ui:component>, when the component is rendered in the page, it isn't ...
0
votes
1answer
53 views
Composite component javax.faces.FacesException: Cannot find component “inputID” in view
I have a composite component which works pretty well when used once in a page but doesn't work if I use it more than once. Let's say the component is called my:field:
...
1
vote
1answer
51 views
How to get input component's submitted value in backing component
I have made a composite component with a backing UIInput. It contains a number spinner. When the spinner is changed, the new value doesn't get sent to the backing component.
I have simplified the ...
1
vote
1answer
36 views
Datatable inside programatically added composite component
Referring to my earlier question (Programmatically create and add composite component in backing bean) I have succesfully able to add composite components from backing bean. Now I have a new problem ...
0
votes
1answer
48 views
How to get JSF composite components to work in WebView
I have JSF 2.1 web application with Spring and Hibernate.
I need to create an Android vesion of that web application. I did it with help of WebView. Everything is OK. Enabling JavaScript and ...
1
vote
2answers
86 views
Backing bean in composite component is recreated on every request
I have two variables "userId" and "name". When I click for example the "SHOW USERID" button it works fine and sets "renderUserId=true" and it shows it with the "render", but then if I click the other ...
4
votes
1answer
199 views
Programmatically create and add composite component in backing bean
I am working with a dynamic dashboard where users can pin and remove items as they like. Now I have a problem that I want to add existing composite component to the view from the backing bean. I've ...
0
votes
2answers
71 views
When a composite component containing JS code is rendered multiple times, JS works only on last component
I have a composite component that is using a PrimeFaces <p:selectOneMenu> defined like:
<p:selectOneMenu id="inOut" onchange="inOutChanged()">
..
</p:selectOneMenu>
I then have ...
2
votes
1answer
73 views
How to get composite component's child component's client ID in JavaScript
I have a composite component with some parameters of input field IDs, such as:
<cc:attribute
name="addressFieldId"
required="true" />
I'd like to use the component like this:
...
0
votes
1answer
65 views
java.lang.NullPointerException at FaceletViewHandlingStrategy$MethodRetargetHandlerManager$ArbitraryMethodRegargetHandler.retarget
I have created a JSF Composite Component to validate some phone numbers. If I place the raw code directly on the page everything works, but when I try to use the code in a CC I get an NPE on the page ...
0
votes
2answers
134 views
Spring3 + JSF Composite components
updated
im trying to use JSF composite componets in my spring3 aplication . Doing a simple test
/test (mapped to view views\test.xhtml)
im getting the following error:
...
0
votes
1answer
251 views
primefaces p:dialog form submit not calling composite components setters when inside ui:repeat
EDIT: the problem is when the composite component is wrapped inside an ui:repeat or h:datatable and also in a p:dialog
Using ...
0
votes
1answer
45 views
encodeAll() not called on a composite component when rendered attribute is wrapped
When I do:
<h:form>
<ui:repeat ...>
<ui:fragment rendered="#{xyz.type eq 1}"
<h:inputText value="#{xyz}"/>
</ui:frament>
...
0
votes
2answers
116 views
How to get changed <p:calendar> value in backing component
I'm not sure how to properly ask that question but I will try like that:
Question is about Primefaces, JSF2 Calendar in composite.. I want to catch an event that is called after that calendar was ...
2
votes
0answers
61 views
How to pass the event parameter when attaching an listener to a composite component
I tried to attach an event-listener to a composite component as follows:
<cc:interface>
<cc:attribute name="listener" method-signature="void ...
1
vote
1answer
107 views
encodeAll method doesn't get called when composite component is placed inside a PrimeFaces p:dialog
I have tested Balusc's inputDate component: Composite component with multiple input fields inside a PrimeFaces dialog. The encodeAll method is not called at all and the select boxes are not ...
2
votes
0answers
186 views
Bind PrimeFaces p:wizard to composite component
I need to have access to a PrimeFaces wizard from inside a composite component. I use Mojarra 2.1.13, PrimeFaces 3.4.2 and Spring Web Flow 2.3.1.RELEASE. My facelet looks like this:
<html ...
0
votes
1answer
91 views
How to reuse a lookup (popup) component for multiple inputs
here is what i am trying to achieve:
I have a page that consists of a lot of (autocomplete) inputs that are used to select the same type of object (all in a different context).
Every single input has ...
1
vote
1answer
182 views
JSF2.0 - Composite component with optional method expression
I'm implementing a composite component and I found a issue which I didn't find a solution.
I specified its attributes that can or not be passed by the page author, but I couldn't specify a method ...
0
votes
0answers
91 views
Passing object parameter from composite component
Am using data table and building composite component,i wanted to fetch the selected row i.e the object..to do tat i need to pass the object..how to do that?
<composite:attribute ...
1
vote
0answers
52 views
JSF: Mixing composite and classic tag results in warning
i asked before it is possible to mix JSF classic and composite components in one taglib file (stackoverflow post)
i was given the answer that it is allowed according to xsd but i now get strange ...
1
vote
2answers
74 views
Core JSF2 Project reusable for other projects [JAR]
I created a project with many Abstract and Generic classes to work with and some composite components. I changed the packing to JAR and used it as a maven dependency for another projects.
So, ...
10
votes
0answers
522 views
Weird behavior of JSF p:dataTable (first entry wrong in p:columns)
I have on a page two p:dataTable. The left one is mainly used for selection
<p:dataTable id="leftTable" var="item" value="#{bean.items}"
selection="#{bean.item}" ...
1
vote
0answers
31 views
IDs not prepended properly in composite container
I have the problem that on an initial pageload the ids of elements inside the composite container are not prepended properly, which leads to "wrong" http-POSTs.
As an example
<h:form ...
0
votes
1answer
141 views
Multiple instances of a composite component in a view?
I read many similar questions, but I cannot figure out how to solve my problem:
I wrote a composite component backed by a view-scoped, self-contained managed bean.
The component consists of an ...
0
votes
1answer
526 views
UI Repeat varStatus not working in CompositeComponent
I use JSF 2.0 (Apache myFaces) on WebSphere Application Server 8.
I have a bean which contains a list of charts (data for jquery HighCharts).
For each chart I need some JSF components + one ...
1
vote
1answer
141 views
ActionListener does not fire within composite component
I have a specific question concerning delegation an ActionListener to a composite component (jsf).
I created a composite component to show (browse) and edit any personal user data (attribute "user").
...
1
vote
1answer
54 views
How to disable elements from within a ViewHandler after jsf has embedded the composite component?
I'm using a ViewHandler to block all input elements on any accessed page, if certain criteria is met.
This works great for the input elements in the 'primary' xhtml files, but the input elements ...
0
votes
1answer
93 views
Implementing JSF Composite Component in Maven project
It seems people are able to implement composite components in SWF 2.3.1, but I cannot find a clear reference for how this is done. I have followed the basic structure for a JSF composite component, ...
4
votes
1answer
432 views
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 field (I removed irrelevant parts from component):
<cc:interface>
...
0
votes
1answer
369 views
JSF - Getting bean and action name from ActionEvent from composite component
I've got a composite component to dynamically call a bean action:
<composite:interface>
<composite:attribute name="actionMethod" method-signature="java.lang.String action()"/>
...
1
vote
0answers
54 views
Unhandled by MetaTagHandler for type
We have a composite with a editableValueHolder, and I am passing a converter and validator in.
I created this little example because I can see that a value of 100.1 is accepted because the converter ...
1
vote
1answer
109 views
JSF 2.0 composite components not working
I wanted to introduce CCs in my project. I am running Java EE 6 on JBoss 7.1.1.
/myProj/src/main/webapp/composites/scheda.xhtml:
<html xmlns="http://www.w3.org/1999/xhtml"
...
1
vote
1answer
43 views
Specify action in JSF 2.0 composite
I want to create a composite component that outputs a <button> tag. This tag will wrap other content. I know that one option would be to write my own component and renderer. However, I would ...
0
votes
0answers
48 views
myfaces action method in composite component throws
I'm running into an odd issue with myfaces 2.1.10 (packaged with TomEE) involving composite components and action methods. Essentially, looking at the example below, myfaces seems to thing that the ...
0
votes
2answers
352 views
Composite Component containing inputText with ajax
The way it works
Seeking hard for the solution, I found that I just forgot the leading h:head tags in my usage component. Adding them made all the errors disappear. So for a complete solution this ...
0
votes
0answers
82 views
How can I have my composite component set an attribute value?
I know this can be a silly question, but...
I wrote a Composite Component to manage the selection of a node (a POJO) in a hierarchical structure.
The component renders an Auto-complete text box (for ...
1
vote
0answers
74 views
JSF composite component documentation
When using any of the standard components in JSF, for example: <h:panelGroup>, I get to see the description of the component as soon as I start typing it. Having created a number of different ...
1
vote
1answer
63 views
jsf2 cant reference container page's element from composite component
launcher.xhtml
this form uses "thing"
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:composite="http://java.sun.com/jsf/composite"
xmlns:f="http://java.sun.com/jsf/core"
...
1
vote
1answer
147 views
Binding multiple JSF dataTables to view
In order to get the row numbers of a datatable I got an answer here that I could bind the dataTable directly to the view (JSF 2 dataTable row index without dataModel).
I'm using that function in a ...
0
votes
0answers
91 views
Packaging composite component with backing bean which references external class - NoClassDefFoundError
I use a backing bean in my composite component which I package in a jar file which I then use in a JaveEE ear project which includes several war projects.
I figured out that "myBackingBean" class ...


