1. Passing a Enum value as a parameter from JSF stackoverflow.comI am trying to migrate my existing code to using Enum and I run into some problems due to my lack experience with Enum. First of all here is my structures. ... |
2. JSF 2: Using enums in the rendered attribute stackoverflow.comIs there any way to check declaratively whether an enum has a specified value. For example:
It's a little bit tedious to define a ... |
3. Put parameter from JavaScript into EL function call in JSF2 stackoverflow.comIn JSF2 we can use parameters in EL, which is great. However, I don't know how to use parameters from JavaScript there. This code doesn't work:
|
4. Prevent converting null request parameter to zero in websphere jsf stackoverflow.comWe use #{param.customId} in faces-config for getting parameter from request. In the glassfish2 it works fine, but under websphere 7.0 undefined BigDecimal null values change to zero (0). How to configure ... |
5. jsf 2 method parameters action listener stackoverflow.comIs there a way to pass a variable into a method param:
This always seems to pass 0 into the method for some reason.
|
6. JSF: ui:include param for "for"-attribute stackoverflow.comI have swapped out a composition to re-use it. The composition contains tags like this:
I include the composition like this:
But ... |
7. JSF: HTTP GET Parameter Array stackoverflow.comI'd like to pass an array as a GET parameter, say: http://localhost/index.jsf?myArray=1stValue&myArray=2ndValue&myArray=3rdValue Then I want to loop over that array:
|
8. Passing a Enum value as a parameter from JSF (revisited) stackoverflow.comPassing a Enum value as a parameter from JSF This question already deals with this issue, however the proposed solution has not worked for me. I define the following enumeration in ... |
9. JSF 2.1 ValueExpression in action-attribute stackoverflow.comSection 3.1.4 of the JSF 2.1 Specification says that all attributes of standard components are value expression enabled. I want to assign a value expression to the action attribute of a commandButton:
|
10. Resolving Boolean properties in EL not working stackoverflow.comI have the following tree node class:
|
11. How to invoke a method with parameter from link stackoverflow.comI have a method in the backing bean that takes a Question object as parameter. I want to pass the question variable in the datatable as argument in a method that ... |
12. How to refer dynamically object fields by using EL coderanch.com |
13. Howto call a Javascript Function with a dynamic JSF EL parameter coderanch.com |
14. request scope params not getting rendered with jsf 1.2 EL? coderanch.comHello all and thank you in advance for any help. I am not seeming to get request scope params rendered into the following code snippet: <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %> <%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %> <%-- Created by IntelliJ IDEA. User: Yucca Date: 11 Nov 2010 Time: 12:38:43 PM To change this template use File | Settings ... |
15. Parameter from URL inside EL coderanch.comparam is an implicit object, will #{param['key']} work? Just to be clear, use the text "param", don't replace this with your parameter name. I tend to use these things in system event listeners rather than in the page so can't speak from experience. If this doesn't work I have a plan B, but that's got to wait for tomorrow. Regards, Brendan. ... |
16. Parameter passing method is not working in JSF 2 (with el api jars el-api-2.2.jar & el-impl-2.2.jar) coderanch.comHi Gurus, When I use the parameter passing method in the view, I am getting el parser error. I use the below jars for el el-api-2.2.jar el-impl-2.2.jar. I placed in the WEB-INF/lib folder. I had issues. So I placed them in a folder and set the class path in the server (weblogic server) startup. But still I encounter the el parse ... |