Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
7k views

How do I specify conditions from 2 different beans in a jsf rendered attribute?

I want to do something along the lines of the following but when I use it like this I get a parse error telling me an entity needs to directly follow the '&' character: <ice:selectManyCheckbox ...
2
votes
1answer
337 views

Although rendered=“false”, content of a h:dataTable is always evaluated

I have got a problem with the HtmlDataTable of JSF 2.0. On my web page, i have got a h:dataTable and some other content, which should only be rendered if the user is logged in. The content of the ...
1
vote
1answer
138 views

JSF Lifecycle Issue: Component tree is built before request attributes are applied

I have a JSF 2.0 facelets view containing of a search form, an ui:repeat for displaying results, and a pager. It is backed by a request bean. The form post consists of the current page, and the search ...
1
vote
0answers
855 views

JSF2 composite component - condition on method attribute existenc

I have a simple composite component with an optional ajax listener implemented with the richfaces a4j:ajax component. Here is the interface definition : <!-- INTERFACE --> ...
1
vote
2answers
180 views

JSF: Empty space caused by rendered attribute

How can I get rid of the empty space by components not rendered via rendered attribute? I want to display a list of objects in a dataTable and sort them by a property they have. I do it likes this: ...
1
vote
1answer
532 views

Facelet Custom Component - prevent rendering

After reading this answer, I am still stumped. I agree that JSTL should be avoided and understand how its evaluation occurs in the wrong phase. However, per the documentation on the facelets ...
1
vote
1answer
662 views

jsf component with render attribute failing validation

I have couple of panel grids with rendered attribute, on value change event of a drop down list, I make one of the panel grids visible, this works fine. But after the panel is displayed all the ...
1
vote
1answer
389 views

How to check if a JSF UIComponent is valid in a jsp file?

In a jsp file, is there a way to find a component on that page and check if that component is valid. Say i have a an input field, and a panelGroup with complex html that should be showed if ...
0
votes
1answer
128 views

JSF/Facelets/JSTL conditional display best practices

<ui:repeat value="#{bean.allResults}" var="result"> <ui:fragment rendered="#{result.condition1}"> <ui:include src="/item1.xhtml"> ...
0
votes
3answers
247 views

JSF javascript boolean rendered

Whats the easiest way to toggle the rendering of a JSF Component based on a javascript flag? I want to display certain things based on whether the user has HTML5 enabled...e.g. geolocation, native ...
0
votes
0answers
148 views

Jsp rendered tag

How to develop a logic in which if the check box is selected then some of textbox which are rendered should be show
0
votes
1answer
1k views

JSF inner datatable not respecting rendered condition of outer table

<h:dataTable cellpadding="0" cellspacing="0" styleClass="list_table" id="OuterItems" value="#{valueList.values}" var="item" border="0"> <h:column rendered="#{item.typeA"> ...