Tagged Questions

0
votes
1answer
30 views

JSP EL (Expression Language) causing problems in Eclipse

My system: Ubuntu 9.10. Eclipse 3.5.1 with Java EE 1.2.1 (manual install - NOT from synaptic). Web Developer Tools 3.1.1 I've recently adopted someone else's code (a Dynamic Web Project), and run …
1
vote
1answer
13 views

Is it possible to use EL inside page directives?

I have some static html content (included on a dynamically generated page) that I want to localize, i.e., help-en.html, help-fr.html and so on. In the JSP file where it is to be included I have a bean …
0
votes
4answers
276 views

How do I round a number in JSTL?

Hi, I'm doing a division in a JSP and I'd like to round the result - how should I do this? i.e. <c:set var="expiry" value="${(expire.time - now.time) / (60 * 1000)}"/> ...how do I …
0
votes
2answers
109 views

Is there a way to use EL to get the current value of an h:inputText field?

Hi, I'm new to JSF and EL, and was wondering if there is a way to use EL to get the current value of an h:inputText field. Am I doing it wrong, or is it possible at all? Thanks, -Ben
1
vote
2answers
159 views

Whats the difference between “${foo.bar}” and “#{foo.bar}” ?

I can use objects from my Java Beans within .jsp files by using the Expression Language (EL). Therefore I can get my value by typing ${foo.bar}. But I can also use #{foo.bar}. Can anybody explain the …
2
votes
3answers
162 views

How to do this using java expression language

Let just say i have the following java object that I wish to read in my jsp using el: class A { Map map = new HashMap(); int count; String getAttribute(String attrName) { …
0
votes
2answers
308 views

JSF+Facelets treating bean action as property

Guys, for some reason EL is not telling actions from properties. I have this page test.xhtml: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 …
5
votes
4answers
2k views

How do you get the length of a list in the JSF expression language?

How would I get the length of an ArrayList using a JSF EL expression? "#{MyBean.somelist.length}" does not work.
0
votes
4answers
810 views

How to Escape Character in EL with JSTL tag?

I have this JSP code snippet: <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <c:choose> <c:when test="${var1.properties[\"Item Type\"] eq \"Animal's Part\"}"> …
0
votes
2answers
464 views

How to create a InputText Tag File with a value attribute and a backing bean?

I want to create a Tag (Source) File to get a custom tag in facelets (as described here). I want it to get used like this: <my:inputText value="#{myBean.someString}"/> <my:inputText …
0
votes
1answer
145 views

‘#’ character before EL expression used inside a JSTL tag behaves strangely

I have the following code to set a userId variable: (userId set in prior code) <c:set var="userId" value="(Cust#${userId})" /> Which produces the following string: (Cust#${userId}) The …
0
votes
3answers
348 views

JSF, how to use EL in onclick.

Hi, I want to create links using database columns. I have a backing bean where I 'm connecting to the database. There is no problem with the connection and also no problem with the links names. I can …
0
votes
1answer
70 views

Formatting orb tags in MVEL

How to remove the whitespace line generat by @code{}, @if{}, @foreach{}, @end{} ect Orb Tags in the result of MVEL 2.0 Templating ? ? ? ?
1
vote
3answers
302 views

Why EL gives me the wrong object as parameter between parenthesis?

Here's the situation: In a rich:dataTable in an a4j:form, i create a a4j:commandLink to select the values and pass it to the bean with the jboss el action syntax …
2
votes
2answers
347 views

JSP: EL expression is not evaluated

I have a JSP page running on Tomcat 5.5. I have the following code: <c:forEach var="i" begin="1" end="10" step="1"> <c:out value="${i}" /> <br /> </c:forEach> The …

1 2 next
15 30 50 per page