1
vote
1answer
38 views

How to use a single form between two ui:define

I've got a simple template where is defined two areas, toolbar and content. The toolbar area has the many commandButtons and the content has fields. My problem is: How to use a single form between two ...
1
vote
1answer
166 views

JSF Primefaces datatable, first cell of first row is using previous datatable value when Columns tag is used

The following code loops thru a list from a database and builds a data table for each entry. Each entry has a List of columns that will be displayed in the data table. The problem I am having is that ...
0
votes
1answer
51 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
1answer
74 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

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
2answers
91 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 ...
0
votes
1answer
290 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
2answers
140 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 ...
1
vote
1answer
118 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
206 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 ...
4
votes
1answer
569 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
0answers
122 views

Target Value on Composite Component Error on Updating entity

I am getting a strange error. I created a simple JSF composite component, that is: <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
0
votes
1answer
97 views

Composite Component and setPropertyActionListener

I have a composite component that have a dialog... Inside the dialog I have the following piece of code: <p:commandButton id="selectButton" icon="ui-icon-check" ...
1
vote
1answer
626 views

Composite Component and SelectOneMenu with (ENUM) Converter

I´m trying to create a simple composite component with a selectOneMenu... It is really simple: <cc:implementation> <h:panelGrid columns="2"> <p:outputLabel ...
1
vote
2answers
555 views

Nested JSF composite components not fully compatible with Primefaces

I'm trying to create a nested JSF composite control wrapped in a Primefaces Accordion control. However when the tab components are placed within the nested component they are not rendered at all. ...
0
votes
0answers
225 views

composite component - how assign an id value to p:calendar?

Problem: I'm trying to create a "composite component"(CC) that would combine the JQuery "inputmask" with Primefaces' "p:calendar" widget. In this case, the CC's "name" attribute is "wired" to the ...
0
votes
0answers
264 views

Primefaces Update Panel (header only)

I'm using the newest version of primefaces for my JSF 2.0 project. I am using a panel in which I have some params that might be filled up by the user. Now I'd like to make the panel toggleable and ...
1
vote
1answer
180 views

Creating a Composite Input Component

I'm trying to create a composite component that is an input component, similar to the one laid out in this tutorial: Composite Input Components in JSF The component uses an p:autocomplete from ...
11
votes
1answer
866 views

Google Chrome Mobile (Nexus 7) | Form submission not working

I have an issue with logging into my website that appears to manifest in the mobile chrome browser (but works for the web-kit browser provided in some phones). I'm working trying to get into a ...
0
votes
0answers
114 views

Override Render only for composite Component

I am writing a composite component. For that i needed to adjust the behaviour of the primefaces tree component. So i extended the renderer and added my custom renderer in the faces-config. At the ...
1
vote
1answer
268 views

Losing inputs submitted in composite component

I have a problem with submitting composite components. Most of my composite components contain both the input components and the "submit" button. When I tried to put the button still in the same ...
2
votes
1answer
371 views

JSF composite:attribute with f:attribute conversion error

I'm implementing a JSF component and need to conditionally add some attributes. This question is similar to a previous JSF: p:dataTable with f:attribute results in "argument type mismatch" ...
0
votes
2answers
132 views

Hiding / Masking Confidential Information in Primefaces Application

I am working on Primefaces. While displaying customer information, for certain customers, some fields are to be kept confidential and should be shown as XXXXXXXXXX and for certain customers, those ...
0
votes
0answers
533 views

ui-define used in composite component doesn't work on primefaces

Now I have to build a composite component to implement a specific function. Our layout page is like the following: layout.xhtml <p:layout > <p:layoutUnit position="center" ...
2
votes
2answers
675 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 ...
4
votes
1answer
840 views

How to access the parent Naming Container of Composite?

I have a JSP 2.0 <ui:component>, within that is a <p:dataTable> with a column that uses a Composite to render a special border about some content. Now I need to identify the ...
0
votes
0answers
813 views

InputText doesnt work in dialog with modal=true (Primefaces)

I have this issue, i think is a bug, i have a composite component with a simple inputtext, then i try to use my composite component in a modal dialog, at first look all it's ok, you can type inside ...
0
votes
1answer
502 views

Generate and use unique name for PrimeFaces remoteCommand

I understand that for PrimeFaces components with the widgetVar property, I can use the p:widgetVar('myComponentId') to get a widgetVar derived from the component's ID. It would be nice if the same ...
0
votes
1answer
299 views

Header doesn't appear in PrimeFaces p:column, when in composite component

I try to make a composite component as a Primefaces p:column: /resources/ezcomp/columnBd_1.xhtml: <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
2
votes
1answer
2k views

JSF Updating Composite Component (Primefaces)

I have the following UI Primefaces snippet: <pou:growl id="growl" redisplay="false" showDetail="false" sticky="false" /> When I try to update ...
3
votes
2answers
2k views

AJAX within nested JSF Composite Component

I'm having a bit of trouble getting AJAX calls to fire properly in a nested composite component with Mojarra 2.0.3 and PrimeFaces. The child composite component looks something like this: ...
0
votes
1answer
629 views

PrimeFaces Dropdown AutoComplete inside composite component

I'm trying to embed the primefaces autocomplete method inside a composite component. However, it fails when trying to access the "complete" method. Here is my code: .. <composite:interface> ...
1
vote
0answers
209 views

resetValue in custom UIInput Composite Component not working

I have a custom UIInput wrapped in a composite component like this: <cc:interface componentType="SingleUpload"> <cc:attribute name="value" required="true" /> ... ...
2
votes
1answer
1k views

Components are with the same id inside ui:repeat

Unfortunately, primefaces accordionPanel doesn't works well in version 2.2.1 if you are trying to create tabs dynamically. This is my case, I need to create accordions if the user clicks an add icon, ...
1
vote
1answer
2k 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
2k views

How do I find update/render parameter inside a composite component?

I have a Composite Component that uses ajax to change multiple elements when an item is selected. I am also using Primefaces p:ajax and p:commandButton instead of f:ajax if that makes any ...
0
votes
2answers
865 views

Can I nest a composite component in itself recursively?

I have DTO which contains itself (it is nested). public class MyDTO { private SomeData someData; private MyDTO nested; // getters and setters } I created composite component, which is ...
3
votes
1answer
2k views

Using one component (dataTable) id inside composite component

How can I use id of DataTable Component (Primefaces 2.2.1) inside Composite Component in Java Server Faces 2.1 ? Now, I have a view: <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE ...
2
votes
3answers
6k views

PrimeFaces CommandButton Action not called inside Composite

In the code bellow the jsf html commandButton action is called perfectly. But primefaces commandButton action is not called. <ui:component ...
1
vote
2answers
965 views

Multiple <cc:insertChildren /> in the same composite component

I'm trying to do a composite component with union of a autoComplete and a dataTable. Like this: <util:myCustomComp ...> <p:column>#{item.code}</p:column> ...
3
votes
1answer
1k 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 ...
2
votes
1answer
2k views

Problem with PrimeFaces and Composite Components

I have a piece of code similar to "Data Table - Instant Row Selection". However, when I break it down into composite components the selection values are not displayed. I have a suspicion it's caused ...
1
vote
1answer
2k views

Best practice for readOnly / edition modes in JSF?

Anyone can suggest a way to perform the edition/read-only modes? I am using PF, and I have done this: <composite:interface> <composite:attribute name="size"/> ...
2
votes
2answers
589 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 ...