0
votes
1answer
201 views

JSF2: NullpointerException at custom composite component

I've been trying to create an own component to "replace" the Richfaces spacer, which is no longer available in Richfaces 4. I have found this link for the actual implementation: ...
0
votes
1answer
54 views

How can i use the markInitialState method?

How can i use the markInitialState() method? I want to save the initial state of my component. Is markInitialState for this?
0
votes
2answers
125 views

What is the difference between put and add method in statehelper in JSF 2

What is the difference between: Object put(Serializable key, Object value) void add(Serializable key, Object value) methods in StateHelper in JSF?
2
votes
2answers
611 views

p:ajax is crashing composite component

I created a composite component that implements a spinner, i works really fine, but when I changed from primefaces 2.2.1 to primefaces 3.3.1 the component crashes all the page when I try use p:ajax ...
0
votes
1answer
183 views

FacesComponent scope

What scope has a FacesComponent??. Can i set something like ViewScope? SessionScope? @FacesComponent(value="myComponent") public class MyComponent extends UINamingContainer { }
0
votes
0answers
324 views

Exposing composite component attribute to children

I have the necessity to load some data in a dataTable using lazy loading. Unfortunatelly, primefaces dataTable only suports lazy loading with pagination, but this is unacceptable to this project, so I ...
0
votes
2answers
494 views

JSF 2.0 - Myfaces have problems rendering composite components

Some days ago I've changed mojarra to myfaces to solve this problem, now I'm having an strange problem rendering my composite components, they simply aren't rendered the second time I open one popup ...
1
vote
1answer
476 views

addressing components from other naming containers

What I would like to achieve is to be able to address some JSF components from within other naming container. Usecase: composite component which encapsulates some features using - for a field which ...
2
votes
2answers
1k 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 ...