JSF/Facelets tag to include a composition.
1
vote
2answers
181 views
jsf 2 ui:include .html give error “XML Parsing Error: no element found”
I include a header.html (not .xhtml) to my page, but when I preview my page, it give me error "XML Parsing Error: no element found". I do know that it is the tag no properly closed issue, but since my ...
0
votes
1answer
173 views
Creating a wizard using ui:include, rich:popupPanel and navigation-rules
I am trying to build a wizard using ui:include in a RichFaces 4 popupPanel and navigation-rules in the faces-config.xml, but on completing the actions in the backing bean, the page does not navigate ...
2
votes
1answer
342 views
<ui:include> throws javax.faces.view.facelets.TagAttributeException: Invalid path
I'm practicing JSF+JPA and got stuck with the following exception:
19/03/2013 00:04:18 org.apache.catalina.core.StandardWrapperValve invoke
GRAVE: Servlet.service() for servlet [Faces Servlet] in ...
1
vote
1answer
470 views
Dynamic ui include and commandButton
I have a page which includes content from another page dynamically (this is done by a method in the bean)
firstPage.xhtml
<ui:include src="#{managedBean.pageView}">
<ui:param ...
1
vote
1answer
110 views
Command Button inside composition page in JSF
I have the same problem as user1598186 has stated in his question here : p:commandButton doesn't call bean's method in an <ui:include> page
However, no solution has been given (he has ...
0
votes
2answers
529 views
Jsf 2.0-<ui:include>xhtml included always even if rendered is false
I have a home page xhtml where i am including 3 child xhtml based on conditions.
The issue i am facing is , whatever be the scenario,Book.xhtml always gets invoked.
I changed the rendered condition to ...
1
vote
2answers
572 views
JSF <ui:include /> where src is dynamic and primefaces
I am struggling with an issue where I am attempting to dynamically generate pages using JSF 2.1 and Primefaces for a kind of CMS project. My issue is that I am attempting to dynamically include a ...
2
votes
1answer
923 views
Dynamic ajax navigation with <ui:include>
Suppose I want to navigate in my application, and include different facelet pages dynamically. I have a commandLink like this:
<h:commandLink value="Link" ...
0
votes
0answers
231 views
AutoComplete throwing nullpointer when in ui:include code
I am using a PrimeFaces autoComplete box in my code. I have used this components in various places in my application with no problem. When I have it in a block of code that is dynamically included via ...
0
votes
0answers
198 views
Fail to access the passed-in parameter to ui:include at the managed bean level if there are multiple ui:include on the page
I have A.xhtml and B.xhtml that look as follow
A.xhtml
<h:form id="myForm">
<ui:include src="B.xhtml">
<ui:param name="formId" value="awesome Id"/>
...
1
vote
1answer
2k views
How to access ui:param value in the managed bean
I have seen this question ask around a lots, however, none was properly answered so I decided to ask again. So if I have this: if I am in A.xhtml and I
<ui:include src="B.xhtml">
...
1
vote
1answer
805 views
JSF: ui:include and the (broken) view scope
I have a JSF page with some common elements and then 4 parts that are dynamically loaded and included based on various user actions. I have beans which encapsulate the functionality of the various ...
2
votes
1answer
403 views
How to use <ui:include> inside a <h:dataTable>?
I want to inlude <ui:include> one page dynamically several times.
Code:
<h:dataTable ..>
<h:column>
<ui:include src="#{create_page}">
<h:column>
...
1
vote
1answer
1k views
hide component of facelet template ui:include ?
how can I hide a facelets component I am including in a template?
in my template.xhtml:
<h:form id="mainForm">
<div style="overflow:hidden; width:1020px; height:565px; ...
3
votes
1answer
182 views
The class behind ui:include JSF tag
How is the ui:include tag implemented? Where can I find its implementation(source code)?
1
vote
1answer
412 views
Display dynamic editors in JSF with ui:include
I want to display a group of editors in a tabview. Each editor has a property called component, that stores the rendered editor. Simple editors use HTML tags to render the editor, whereas complex ones ...
1
vote
2answers
1k views
Using dynamic ui:include inside ui:repeat results in NullPointerException
I want to create dynamic dialog windows by using <ui:repeat> and <p:dialog> with <ui:include>. But there's an exception when I tried like below.
main.xhtml
<p:outputPanel ...