Tagged Questions
0
votes
1answer
28 views
JSF Epic EL Warning, should I worry?
I'm Developing a Liferay protlet that works with JSF 2 and PrimeFaces (3.5). I'm using Eclipse, and when I enabled in the Project Facets, the 'Java Server Faces', I'm getting this amazing error
...
1
vote
1answer
33 views
Dynamically build the column values
I am building a component that will build a data table dynamically. I need to pass in the field name from the class and concatenate it to the var attribute of the table. example : "tblVar.firstName". ...
0
votes
0answers
32 views
How do I make p:dataTable in ui:composition more reusable?
I'm using PrimeFaces 3.4 and I have a series of .xhtml for the dataTables on a page. I would like to use one .xhtml for all the tables on the page and use ui:param when including that .xhtml for each ...
0
votes
1answer
36 views
How to get init param in JSF 1x using EL
i have a context param as follows:
<context-param>
<param-name>myInitParam</param-name>
<param-value>myValue</param-value>
</context-param>
i want to ...
-2
votes
1answer
29 views
How to use EL with p:panel header?
I want to put a dynamic string inside a p:panel header just like using it with p:inputText for example value="#{object.property}" is it possible to do that ?
0
votes
1answer
31 views
Create a new instace class in a JSF EL expression
Is it possible to pass a generic class instance to a method in JSF EL expression ?
For example something like this:
#{beanController.someMethod(new ClassToInstance())}
It should be very useful for ...
0
votes
1answer
60 views
Show a specific model property based on selected item
I have this model:
public class Rent {
private Integer priceDay;
private Integer priceWeek;
private Integer priceMonth;
// ...
}
I would like to display the price of the desired ...
2
votes
2answers
45 views
ui:repeat inside a javascript
is there any way to perform a ui:repeat inside a javascript? this is what i'm trying to do.
var point;
<ui:repeat value="#{testController.allItems}" var="item">
point = new ...
1
vote
2answers
50 views
How does EL context resolve UIData 'var' attributes?
I am trying to create a custom UIData component and I am having troubles with Ajax. The first call works fine, but subsequent calls cannot resolve my UIData 'var' attribute. When trying to debug, I ...
1
vote
2answers
69 views
How to show JSF components if list is not null and has size() > 0
How do I show JSF components if a list is not null and it has a size() > 0?
0
votes
0answers
33 views
EL brackets with nested property
I have an EL expression that uses brackets:
#{car[column.property]}
column.property could possibly be nested (i.e. prop.subprop) but I don't know because this is being used in a totally generic ...
0
votes
1answer
45 views
PropertyNotFoundException EL Expressions not resolving?
I have code similar to this in my facelet...
<c:foreach items=#{myBean.listOfA} var="a">
<c:foreach items=#{myBean.listOfB} var="b">
<c:set var="aName" value="#{a.name}">
...
0
votes
0answers
44 views
Seam, JSF, and EL null checks
I'm working on a web application that is pretty vast. We're using Seam 2.2.1 and JSF, among other things. The full implementation isn't really relevant to the question, though.
We use plenty of XHMTL ...
3
votes
1answer
36 views
Replace only part of an EL
I have a template in JSF, this template have a button whose action must be different for each page that will use this template.
I wonder if there is any way to set only a part of that action.
Eg
In ...
-1
votes
0answers
44 views
JSP Expression Language and JSF EL
Is JSF EL/RichFaces/PrimeFaces based on JSP EL specification ? if true, this mean all JSP EL specification can be used in JSF EL ?
Thanks
2
votes
0answers
36 views
Programmatically register taglib reference
Is there a way to programmatically, in a java code, register custom taglib reference?
I am using JSF 1.2_09, rich faces 3.3.3, jsf-facelets 1.1.14.
Specifically:
In this code, jsf Expression ...
0
votes
0answers
67 views
Access nested properties in variable EL expression
Normally, I can access nested bean's property, in this case, address_name of address like this:
#{customer.address.address_name}
Let's say, I have a String:
String addressPath = ...
1
vote
1answer
63 views
How to group boolean conditions in EL
I'm having trouble evaluating a pair of boolean expressions within a JSF using EL.
Here's my snippet:
<a4j:commandButton id="addbtn" value="Add School(s)"
action="#{somebean.someaction}" ...
0
votes
0answers
47 views
Evaluating value in inputText in JSF 2.x: X is not a valid Java identifier
I've got following problem:
I use myComp.xhtml as a wrapper for inputText as follows:
<h:inputText
value="#{entity[entityProperty]}">
...
</h:inputText>
when I try to use myComp like ...
-3
votes
2answers
84 views
How to call a method when a form is submitted on a JSF page?
What I basically want to do is, when the user submits the form, a method should be called, which is not a setter.
Here is what I have tried:
<h:form>
<p>
Your guess: ...
0
votes
1answer
95 views
<c:forEach> treats items property as a string
I am trying to iterate over a collection of elements, which are complex types (another entities) using <c:forEach>:
<c:forEach items="#{repcatTree.items}" var="item">
<div ...
1
vote
1answer
80 views
The right way to conditional rendering of non-JSF components
I'm trying to conditionally render a <tr> therefore I cannot use <h:panelGroup> as it will render to <span> or <div>
My current (working) approach is the following:
...
0
votes
1answer
65 views
JSF EL and + or condition
What would be the best way to format the following condition as in EL?
#{bean.booleanValue and (bean.stringValue ne 'MYCLOSED' or bean.stringValue ne 'ALLCLOSED')}"
The brackets don't seem to be ...
0
votes
1answer
69 views
JSP tag file doesn't recognize #{} syntax
In my JSP page I'm using the following line to retrieve a label:
<f:loadBundle basename="com.me.resources.test" var="mytest" />
<h:outputLabel value= "#{mytest.mylabel}"/>
and it's ...
0
votes
3answers
72 views
EL evaluation in a JSF page is not sequential
I have an XHTML with ui:composition tag which I am loading on AJAX. I am using a jQuery Ajax GET to load the URL of this XHTML. In the loaded page, I have an EL expression and after that I am also ...
2
votes
1answer
116 views
EL expression in c:set gets called multiple times instead of its return value being used
I have an Action in request scope. The return value of one of its methods is passed around to a custom facelet tag. This tag then extracts several attributes of the returned object and displays them. ...
0
votes
1answer
88 views
How to invoke a helper method with arguments in EL
I have a list of values in a managed bean.
Values
120
70
30
60
However the requirement is to map these values to a Color in between red(0%
) and green(100%). I need to provide this converted color ...
1
vote
1answer
103 views
JSF2 Building Dynamic EL Expressions
I am working on creating a dynamic table using JSTL forEach and a h:dataTable and have all of the controls and potential error message showing nicely, but am now stuck on getting the value set for ...
1
vote
2answers
101 views
Checking for string length in Expression language
I am using JSF and want to have a component that should be rendered only when the value of a String in the associated managed bean is greater than zero. I am doing this :
...
3
votes
1answer
128 views
passing datatable object var as parameter in EL expression: how to make it robust?
In Core JavaServer Faces we find the following example for deleting rows out of a DataTable, where tableData.names is a list of Name objects:
<h:dataTable value="#{tableData.names}" var="name" ... ...
0
votes
2answers
84 views
How to pass argument in listener?
How can I pass an arugument to listener method?
I have tried like this:
<p:poll interval="3" listener="#{vehicleController.onPoll('12')}"
update="vehicleDataList"/>
and
<p:poll ...
0
votes
0answers
45 views
Dynamic MethodExpression not getting invoked
I have a dynamically created commandButton in a column of a dataTable inside my xhtml, and the methodExpression I defined for it is not getting invoked. Here's the detailed description:
I create the ...
0
votes
1answer
59 views
immediate vs deferred evalutation for reading bean properties
I am still unclear about the use of JSF immediate evaluation vs deferred evalutation, mainly because the online examples almost never seem to use the former method.
I have seen a fair amount of JSF ...
0
votes
1answer
79 views
JSF char comparison does not work as expected
I have a JSF page which i control the renderer attribute according to managed bean property.
<p:commandLink action="#{smartphoneBean.drillDown(smartphone.ldapuser,smartphone.productGrp)}"
...
0
votes
1answer
72 views
Failed to parse the expression [#{contatosController.adicionar(actionEvent)}]
I'm trying to learn JSF and EL and I am facing the following error:
/index.xhtml @20,120 actionListener="#{contatosController.adicionar(actionEvent)}" Q
What does that mean and how can I solve it?
1
vote
1answer
56 views
JSF EL expression does not work in required attribute of HtmlInputText
I am adding JSF components dynamically into an XHTML page created using JSF 1.2 with facelets. The required validation of some of these components have to be carried out only when a specfic button in ...
0
votes
3answers
125 views
dynamic El expression evaluation in map
I have a bean which returns me map of key-value pairs ( String,String) . In my jsff, I need to access the map's value based on key which is a a dynamic El expression
<af:iterator id="i1" ...
0
votes
1answer
128 views
To log JSF facelet(xhtml) expression language error on page in log file using log4j?
I wonder if there is a way to log the EL(Expression Language) errors on jsf-facelet(xhtml) page in log file using log4j? I tried the following loggers but in vain..
<logger name="javax.faces">
...
0
votes
0answers
64 views
Expression language and navigation query
I am trying to to get a new web page to load after the client successfully logs in. So the databases is checked for the username and password and then the boolean variable (greetController.greet) is ...
0
votes
0answers
153 views
EL Binding inside ui:include, inside TabView, recreates bean on ajax calls
Before putting my .xhtml in tabs (via "ui:include src"), I used separate pages, and the PARTIAL_STATE_SAVING = false solution worked fine for preventing the reconstruction and reloading of the bean. ...
0
votes
1answer
84 views
Load new web page on successful password check
I am trying to write some 'Expression language' code. At the moment, under (1) below the greetController.greet method is called and this returns a string if the user name and password matches. What I ...
2
votes
0answers
28 views
el-api 2.2 on jboss 5.1 [duplicate]
I would like to use el-api 2.2 on jboss 5.1. I can't use el-jboss because it conflict with JSF validation on BigDecimal types.
I've integrated el-api 2.2 in my project and on tomcat it work smooth. ...
0
votes
3answers
134 views
View keeps older value when I clear my backing bean
Is JSF value binding unidirectional or bidirectional?
When I clear my backing bean data, view still keeps the older values.
Is this the way JSF works?
I want to know a way to sync view with backing ...
-1
votes
1answer
139 views
Getting value of h:outputtext using expression language in JSF
I have to get the value of h:outputtext to evaluate a condition using Expression language.
I am using the below piece of code. but getting
"org.apache.jasper.JasperException: /test.jsp(43,20) ...
0
votes
0answers
52 views
Which EL Resolver will be used for @ManagedBeans from library?
I'm considering moving some of the @ManagedBeans to the library to reuse them in other projects. However, I couldn't find information which EL Resolver will be used then.
The project with shared ...
0
votes
2answers
502 views
CommandButton action: use value of inputText as parameter in dynamic URL
I need to make a small form where user types a number into the inputField, and clicks on a button, then is sent to a page, using that number as a parameter to the page.
So far I got into this:
...
2
votes
2answers
194 views
#{facesContext} EL expression not resolved at runtime
I am working on JSF 1.x
On an example stated in JavaServer Faces in Action.
My EL expression of 'Faces Context' is not executing at run time in command button on retrieving the image.
My Project ...
1
vote
1answer
110 views
Displaying the label based upon the message properties key stored in Database
I am displaying the label value from the database which gets displayed properly on the form.
The requirement is that i want to display the form in multiple languages and have created a properties file ...
0
votes
1answer
117 views
Get Values from a valueExpression JSF1.2
I am trying to get the value contained in a value expression. I need to use it for some validation. When I set the value expression in an HTMLOutput it is displayed on the screen. Please suggest what ...
2
votes
0answers
226 views
PrimeFaces p:blockUI blocking a certain component dynamically (on JSF EL condition)?
How do you make PrimeFaces p:blockUI block a certain component dynamically, that is on EL condition?
USE CASE:
The condition at hand is basically a mode that the user can be in on a page: if there ...




