Tagged Questions

"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. Creating composite components Prepare folder ...

learn more… | top users | synonyms

8
votes
1answer
897 views

When to use <ui:include>, tag files, composite components and/or custom components?

I started using JSF 2.0 with Facelets recently and got puzzled by new composite components knowing existing <ui:include> and other templating techniques offered by Facelets 1.x. What is the ...
5
votes
1answer
280 views

JSF Recursive Composite Component

I have a recursive object bean structure, which is like list of Master DTO -> value -> list of Master DTO I am trying to create a recursive composite component with one input text and a button with ...
5
votes
2answers
3k views

How to pass a action string into a JSF 2 composite component?

I'm creating a simple menuing composite component in JSF 2. However, I am unable to pass a String attribute into the composite component to use in the action attribute of the <h:commandLink>. ...
4
votes
2answers
2k views

JSF 2 - How can I add an Ajax listener method to composite component interface?

I have a JSF 2 composite component that employs some Ajax behavior. I want to add a listener method to the <f:ajax> tag inside my composite component, but the listener method should be provided ...
4
votes
1answer
699 views

How to implement a dynamic list with a JSF 2.0 Composite Component?

I asked this question and although the answer directly satisfied my needs I am left with a feeling that there has to a simpler solution for this specific problem. I would like to have a composite ...
4
votes
2answers
1k views

How to make a grid of JSF composite component?

I have lot's of outputLabel and inputText pairs in panelGrids <h:panelGrid columns="2"> <h:outputLabel value="label1" for="inputId1"/> <h:inputText id="inputId1/> ...
4
votes
1answer
1k views

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 Core JSF 3 book, but just get an NPE. The problem seems to be at the start of ...
3
votes
2answers
89 views

Use of f:attribute inside a composite component

we have a (in our oppinion) very simple scenario here. But we got stuck somehow on composite components and f:attribute tags. I'll try to keep the code as simple as possible. Composite Component: ...
3
votes
2answers
428 views

setPropertyActionListener on commandLink inside ui:repeat with a composite component

I've created a composite component that has a commandLink embedded inside of a ui:repeat. I need to be able to dynamically change the method that is called via the commandLink's action property but ...
3
votes
1answer
474 views

JSF 2 Composote Component EL Problem

I have a JSF Composite Component that has a EL Expression on the Interface part, code snippet below. <cc:interface> <cc:attribute name="label" type="java.lang.String"/> ...
3
votes
3answers
775 views

JSF 2 Composite component required attribute throws exception in Mojarra 2.0.3

I've been playing around with JSF 2.0 composite components but I'm a bit confused as to what the require attribute in the composite:attribute tag is meant to do. The documentation says that the ...
3
votes
1answer
965 views

JSF 2 Composite component insertChildren tag making @ViewScoped into @RequestScoped :(

I am having an issue where my @ViewScoped managed bean is behaving like a @RequestScoped managedBean simply because I am using the composite:insertChildren tag. I have read the other posts on the ...
2
votes
1answer
21 views

How to save state when extending UIComponentBase

I'm creating a composite component that will wrap a datatable to implement very simple paging. I need to save state (the current page number) between ajax requests. I tried creating fields in my ...
2
votes
1answer
37 views

Specifying different error messages for different composite components

Is there a way to have REQUIRED messages for different kinds of composite components? I'd like to be able to say something like the following in a message bundle ...
2
votes
0answers
103 views

Inconsistent Composite Component clientId when using a MethodExpression attribute

Hi suppose you have the following composite component: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
2
votes
1answer
171 views

JSF 2 custom component with h:commandLink inside ui:repeat

I developed a custom component (inspired by this article by BalusC) that contains a ui:repeat tag displaying the list of clickable table pages. Inside the loop block there is a h:commandLink that ...
2
votes
1answer
382 views

How to reference #{cc.clientId} in ajax update/process/render/execute?

I don't know how to reference descendant components of composite component in update or process (alias render or execute). I have this composite component resources/components/crud.xhtml: <html ...
2
votes
1answer
113 views

Why does composite component “rendered” attribute throw an IllegalArgument Exception?

I create a composite component like this: <cc:interface> <cc:attribute name="value" required="true" /> <cc:attribute name="rendered" ...
2
votes
1answer
153 views

JSF 2 composites and binding for validation

I have a problem with a JSF composite which validates internal input fields. Following code snippet works as long as only one composite is included. <div id="#{cc.clientId}" > ...
2
votes
1answer
191 views

Making a Composite Component in JSF2

I have a problem with my composite component in JSF2. I implement a list using ui and li. But if I use my component nothing happens. My list-tag is not replaced in code generated by facelet. So whats ...
2
votes
1answer
89 views

Include a javascript for composite component only once in a page despite of composite components themselves used multiple times

How do I include a JavaScript code only once for multiple usages of a composite component on a page? Initially I had put I put the JS code inside the cc:implementation tags but that lead to the ...
2
votes
2answers
257 views

UIInput values inside cc:insertChildren are not redisplayed after validation failure

Update: Updated once more now. I think my previous analysis was wrong, because I have now been able to create an example for this. It appears to be related to composite components and the ...
2
votes
2answers
172 views

Injecting Resources Into UIComponent (aka does CDI work here?)

I am writing a (composite) component that needs to interact with my DAO. Here is how the Java part is declared: @FacesComponent(value="selectLocation") public class SelectLocation extends ...
2
votes
2answers
120 views

std containers iterator invalidation during erase [closed]

Possible Duplicates: vector erase iterator Problem with std::map::iterator after calling erase() I am having a concern about a piece of my code that I have. I have components and an ...
2
votes
2answers
509 views

Getting same instance of `componentType` in composite component on every use

Hi Have this Wierd Issue in which I am using a Composite Component which I wrote and I get values from the previous use of the backing bean of the CC (the componentType bean) I don't know how to ...
2
votes
4answers
389 views

Where is JSF 2.1 complete documentation?

I have many questions regarding JSF 2.1. I post most of them here since, I could never find the real ultimate documentation where I can get the answers. For example, I would currently like to know ...
2
votes
1answer
521 views

JSF2 composite components: are #{cc.childCount} and <composite:insertChildren/> mutually exclusive?

I just dont get it: If I want my composite component to insert children, I use <composite:insertChildren/> but #{cc.childCount} always returns 0 in that case. On the other hand, If I do not use ...
2
votes
1answer
385 views

Private/scoped variable in JSF2/Facelets <ui:component>?

I might not be thinking correctly in terms of visual components in JSF, but I guess that's part of my question. My question is around the seeming lack of scope around variables declared within JSF ...
2
votes
1answer
436 views

JSF 2 Nested Composite Components Question

I've read some articles about writing composite components in JSF 2 and even about defining nested composite components, but I haven't found the example to defining a composite component that can ...
2
votes
1answer
325 views

JSF 2 - How can I perform an action after a Composite Component child completes an operation?

I'm still learning to use some of the capabilities of Composite Components in JSF 2. I am experienced with JSF 1.2 development and I have recently read the book "Core Java Server Faces 3rd Edition" by ...
2
votes
0answers
279 views

Passing optional <f:attributes> to JSF components within composite components

I am looking to pass in attribute values to inner components of a composite component. The long and short of it is that we are trying to wrap an h:outputLink in some further XHTML. We wish for the ...
2
votes
1answer
328 views

JSF2: How do I render composite component's children at a specific location within component?

I have problem referencing and displaying composite component's childs like that: <xyz:mycomponent> <h:outputText value="some text"/> <h:outputText value="another text"/> ...
2
votes
1answer
446 views

How to make an id unique on page with JSF composite components?

Hey guys. I'm making a component for the javascript charting library called flot. <cc:interface> <cc:attribute name="data" required="true" /> </cc:interface> ...
2
votes
1answer
2k views

How to programmatically or dynamically create a composite component in JSF 2

I need to programatically create composite components in JSF 2. After few days of searching and experiments I figure out this method (higly inspired by Lexi at java.net): /** * Method will attach ...
2
votes
1answer
716 views

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 equivalent that can be defined in cc:interface or cc:implementation that will ...
2
votes
1answer
270 views

How to pass the node value as the attribute in Composite Component in JSF 2.0

I am developing a JSF 2.0 composite component. I am trying to create a box component to which my required HTML will be set as attribute. Some thing like.. <composite:interface> ...
2
votes
2answers
327 views

Primefaces sources jsf

I've downloaded primefaces sources to see if I can learn from them. The jar contains a bunch of java classes that use writers to handle the rendering etc. I was expecting to find some .xhtml files ...
2
votes
1answer
686 views

JSF 2.0: Passing composite component attribute to inner composite component

I have the following case: <cc:interface> <cc:attribute name="someValue" /> </cc:interface> <cc:composite> <x:someComponent> ...
2
votes
1answer
1k views

JSF2 composite cc.attrs expression does not evaluate action parameters correctly

I have a JSF composite component which is a list of email addresses that can be dynamically added to, and deleted from: <composite:interface shortDescription="Display party email addresses"> ...
2
votes
1answer
72 views

Customize where components within the composite components will be placed in the webpage

Is it possible to specify where the components within a composite component will be displayed on your webpage? I have a composite component with a label and a textbox in it. I would like to know if I ...
2
votes
1answer
906 views

Newbie in JSF: composition vs composite

I am starting development on a new web application which uses JSF 2 as the view technology. I have no prior experience with JSF and am a bit confused about the concepts. I read some documentation on ...
1
vote
0answers
14 views

How to pass the validator property to a h:inputText from a JSF2 composite component?

We have a text input component created as a JSF 2 component that encapsulates both the label and the edit field (h:inputText), and which also takes care of the layout. Our problem at the moment is to ...
1
vote
0answers
27 views

How to set the focus to the last item in ui:repeat JSF

I have a scrollable div and I like to set the focus at the last element. How can I achieve this? <div class="scrolldiv"> <h:form id="form"> <ui:repeat...> <h:panelGrid ...
1
vote
1answer
38 views

Accessing JSF2 composite component attributes in backing component

I'm developing a JSF2/Primefaces app and I'm having trouble with accessing attributes defined in an interface of a composite component in this component's backing bean. My component is defined as ...
1
vote
1answer
46 views

Update a composite component?

how can I tell a composite component that it should update another cc? I tried to give a "update" attribute to the first cc, which is handed to a button. Then I annotated the snd cc with that id. ...
1
vote
1answer
28 views

How to parameterize requiredMessage attribute in composite component?

BalusC provided a good answer to a question about how to set messages per composite component. Specifying different error messages for different composite components The answer involved using per ...
1
vote
1answer
91 views

How to pass attributes to a composite-component

I am having trouble in using a JSF composite-component in the right way. I put some components together and everything was working. Then I just extracted the code to a composite-component, and passed ...
1
vote
1answer
80 views

Not a Valid Method Expression

I have defined a composition like this : <ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" ...
1
vote
1answer
65 views

How to extract first component ID from #{cc.clientId}?

I neet to get a specific parent component ID in a composite component. I've only found out how to get the entire chain of IDs, namely as I wrote in the title: #{cc.clientId}. It delivers (I don't know ...
1
vote
3answers
109 views

How to specify a validator for an input component inside a composite component?

Should I register a custom validator in faces-config.xml if I'm using JSF 2.0.4? My custom validator uses Validator interface which is javax.faces.validator.Validator. <cc:myComp id="customcomp1" ...

1 2 3 4