Tagged Questions
0
votes
2answers
12 views
How can an EL-Expression be used to set emptyMessage on dataTable (PF)?
I'm trying to set the emptyMessage-Attribute of a dataTable whereas I would like to access values of a backing bean - something like (which is of course not evaluating properly):
<p:dataTable ...
0
votes
1answer
27 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
...
0
votes
0answers
31 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 ...
-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
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
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
1answer
116 views
Oncomplete JavaScript does not re-evaluate EL expression at time of execution
I have a Primefaces dialog that contains a 'Save' button with the following oncomplete rules:
<p:dialog id="dialogId" widgetVar="dialogWidget">
...
<p:commandButton value="Save" ...
0
votes
0answers
151 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
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:
...
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 ...
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 ...
1
vote
1answer
160 views
JSF - actionListener tag calls method which doesn't take an ActionEvent parameter
I keep reading posts which say that ActionListener methods must have the following signiture:
public void calledByActionListener(ActionEvent e) {
}
Invoked like so:
<p:commandButton ...
1
vote
1answer
122 views
How to iterate over variable in param using JSF EL expression
I have a PrimeFaces <p:dataGrid> component that contains a variable number of panels. Each panel contains a number of derived components. I have a delete button contained inside each of these ...
1
vote
1answer
89 views
How to access the bean linked in an attribute of UIComponent?
I need to access the bean object used in a EL expression of an UIComponent.
For example, in this sample code:
xhtml:
<h:form>
<f:view>
<p:selectBooleanButton ...
1
vote
2answers
106 views
boolean expression in required attribute
Is it possible to fill the value of required attribute with boolean EL expression?
I have a form in which Quantity input (qtyInput) is required only if Description input (descInput) is not empty. I ...
0
votes
2answers
577 views
Display HashMap data in JSF page
I am struggling in displaying the content of hashmap in primefaces widgets like inputtext, selectonemenu etc etc.
I have defined hasmaps
private Map<String, String> subIdMap = new ...
2
votes
1answer
268 views
PrimeFaces dataTable: strange ELException caused by ClassCastException (no stacktrace) using GlassFish + Mojarra
We have a list of collision entities that you can single-select in a PrimeFaces <p:datatable>. Below that one is a fieldset which shows the associated history and file attachments.
Here's the ...
1
vote
1answer
129 views
Passing a Character (vs passing String) to backing bean method in EL
I would like to call a setter directly from a command button and pass a value. My problem is that the setter is expecting a Character and jsf if passing it back as a String. Is there a good way to ...
2
votes
1answer
323 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
1answer
128 views
Trying to nest JSF expression strings
I'd like to know whether it is possible to adapt the ExtendedBeanELResolver from the question nesting-jsf-expression-strings as well to handle this nested EL expression:
...
2
votes
2answers
763 views
Having a “constants”-class in JSF
I'm building a web-application using JSF/Primefaces. I need to have a "constants"-class, i.e. a class that will consist of constants. These constants are mainly navigational commands that will be used ...
0
votes
0answers
387 views
Maven-JSF Primefaces EL nullPointerException relating to the primefaces balises
I have some .xhtml hsf pages in which I'm using primefaces and the EL, when trying to do something retating to those pages I get a java.lang.NullPointerExceptionthat I think it's because I can't get ...
0
votes
1answer
323 views
null value when binding a field inside HashMap using jsf
I have a request scoped CDI manage bean(Also tried with jsf managed bean but the same problem!) :
@Named
@RequestScoped
public class myController{
private HashMap<String, MyModel> modelMap;
...
2
votes
1answer
703 views
How to get EL 2.2 working on WAS 7 (with Myfaces and Primefaces)?
I'm migrating a JSF 1.2 project, running in WAS7, to JSF2 with Myfaces 2.1.7 and Primefaces.
Until now, everything was more or less working, putting myfaces-bundle-2.1.7.jar and primefaces ...
0
votes
2answers
528 views
How to pass a parameter into rendered attribute?
I try to pass a parameter into method admin like this:
<p:toolbarGroup align="right" rendered="#{loginBean.admin('dataread'}">
<h:form>
...
3
votes
1answer
591 views
No access to nested property in managed bean within p:columns
I have following two simple POJOs:
class Person {
String name
Address address;
//and of course the getter/setter for the attributes
}
class Address {
String city;
//also getter/setter ...
0
votes
1answer
1k views
Dynamically assigning IDs to tags using an EL variable
I want to loop over a number of "guests" and insert an id dynanimally
<ui:repeat value="#{guestList}" var="guest">
<p:inputText id="firstname_#{guest.uniqueID}" value="" ...
4
votes
1answer
367 views
Does el support overloaded methods?
I switched to the newest primefaces version and suddenly the call of an overloaded bean method in an action attribute did not worked anymore.
So I tried to use a jsf default commandlink to test it ...
1
vote
3answers
3k views
Get id of parent naming container in template for in render / update attribute
I have a template and in its Definition I use several forms and buttons.
The problem is the definition (define) xhtml file does not know the component hierarchy.
And for example I want to update the ...
0
votes
1answer
3k views
EL expression inside p:commandButton onclick does not update/re-render on ajax request?
The onclick attribute of my commandButton has some EL dependent Javascript inside. To be more specific, here is that piece of code:
<p:commandButton
onclick="javascript: ...
0
votes
3answers
2k views
Cannot pass arguments to a method through EL - javax.el.MethodNotFoundException
Using JSF 2.0 and EL, I am trying to call a method on a POJO which is an attribute of a viewscoped bean. The code is actually very similar to @BalusC's tutorial here. When I call a method that takes ...
0
votes
1answer
790 views
javax.el.ELException
While deploying GAE + primefaces application, I got following error:
com.sun.faces.application.view.FaceletViewHandlingStrategy handleRenderException: Error Rendering View[/CreateEmployee.xhtml]
...
1
vote
1answer
452 views
How to null check in EL to show p:dialogs conditionally?
I have two <p:dailog>s and based on the condition of a bean property I want to show one of them. I have used the following code
onclick="#{empty ...
1
vote
2answers
3k views
f:param not passed in ajax request
I'm having trouble with the following code:
<h:inputHidden value="autoCompleteHidden" id="administradorAutocompleteType">
<f:param ...
-2
votes
2answers
153 views
How to call a method with argment in an input component?
I want to call a method with parameter that return a string.
public String MyMethod(Integer param) {
String xx=......;
return xx;
}
And I want to display this result in <p:inputText>. ...
1
vote
2answers
8k views
Executing the ActionListener of a (Primefaces) menu item leads to an IllegalStateException
In JSF backed bean I got an IllegalStateException when the programmatically added action listener of a programmatically added Primefaces menu item is called. I tried both request and session scope but ...
1
vote
1answer
683 views
JSF force render value expression
I have problem with JSF (1.2) + primefaces (1.1). I have written classic site on JSF, and I have for every article request scoped backing bean. The problem is, that when I try to rate the article, the ...



