Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just want to iterate over a list, I don't want any html spitted out, so datalist and c:ForEach are not an option. The reason is, the mockup is already made and as rule we have to use <ul> and <li>, so I can't use anything creating a table.

I have investigated and ui:repeat would do the job, but it does not work in a JSP.

I wish there was something like in STRUTS logic:iterate because I only need to iterate over a list.

Thanks for your help.

John

share|improve this question

2 Answers

up vote 1 down vote accepted

It's not entirely clear what exactly you mean with "datalist", but Tomahawk's <t:dataList> does not emit any HTML by default if you omit the layout attribute, so it ought to work out for you.

<ul>
    <t:dataList value="#{memberHandler.subTypes}" var="subType">
        <li><h:outputText value="#{subType.fullSubtypeDisplayName}"/></li>
    </t:dataList>
</ul>

By the way, setting layout="unorderedList" should render exactly the same <ul><li> as in the above example:

<t:dataList value="#{memberHandler.subTypes}" var="subType" layout="unorderedList">
    <h:outputText value="#{subType.fullSubtypeDisplayName}"/>
</t:dataList>

When using JSTL <c:forEach> on a JSP template referring a managed bean value, you are dependent on the JSP version used and whether JSF has already autocreated the managed bean beforehand. When using Servlet 2.5/JSP 2.1, you should be able to use #{} in JSTL tags:

<ul>
    <c:forEach value="#{memberHandler.subTypes}" var="subType">
        <li><h:outputText value="#{subType.fullSubtypeDisplayName}"/></li>
    </c:forEach>
</ul>

When using Servlet 2.4/JSP 2.0, you should stick using ${} and use <c:out> instead of <h:outputText> and ensure that JSF has already autocreated the managed bean beforehand in the view template by #{} which triggers autocreating beans whereas ${} doesn't.

<h:someComponent value="#{memberHandler.someThing}" />
...
<ul>
    <c:forEach value="${memberHandler.subTypes}" var="subType">
        <li><c:out value="${subType.fullSubtypeDisplayName}"/></li>
    </c:forEach>
</ul>

Tomahawk's <t:dataList> would be a much better alternative here.

share|improve this answer
I tried the first example, It shows the bullet for the list but nothing comes out in the outputText, also, there are 2 items in the list and it shows only one bullet – John Aug 25 '11 at 16:42
the t:datalist without anything still creates an unorderedList – John Aug 25 '11 at 16:55
That's then just your misinterpretation/misconfiguration. – BalusC Aug 25 '11 at 17:00
thank you I got it working. I have another quick question for you. It is possible to do something like <ntc:graphicImage value="#{imageName(43,13)}" />, I know in struts you can do it, but I have not seen it done in JSF! – John Aug 25 '11 at 20:05
You're welcome. Since you're new here, please don't forget to mark the answer accepted which helped most in solving the problem. See also meta.stackoverflow.com/questions/5234/…. As to your new question, it's only possible if you target a container which supports EL 2.2 or bring JBoss EL along. You could also create an EL function instead. If you stucks, just press Ask Question button at right top. – BalusC Aug 25 '11 at 20:08

<c:forEach> doesn't generate any HTML. It only iterates through a collection or array. It does exactly the same thing as <struts:iterate>, but in a standard way, and with the JSP EL.

<ul>
    <c:forEach var="item" items="${myListOfItems}">
        <li><c:out value="${item.label}"/></li>
    </c:forEach>
</ul>
share|improve this answer
maybe I remember incorrectly and the problem was, it may not work with h:outputText – John Aug 25 '11 at 14:49
@John: you are wrong. Perhaps you're confusing with flow problems of using JSTL tags within other JSF iteration components like <h:dataTable>. – BalusC Aug 25 '11 at 14:59
I thought you looked for something to use in a JSP based application, not a "JSF using JSP" application. I don't know about JSF. Sorry. – JB Nizet Aug 25 '11 at 15:01
It is a bit of mix app I am working (I did not write it, but I need to solve this problem). It is a jsf and uses a mixure of xhtml and jsp. The page in question is a JSP – John Aug 25 '11 at 15:04
@Balus, I was wrong a first, now I remember why I could not usec:forEach and c:out, they would not work with the jsf, I have the code in front me and nothing gets rendered: <ul> <c:forEach var="subType" items="${memberHandler.subTypes}"> <li><c:out value="${subType.fullSubtypeDisplayName}"/></li> </c:forEach> </ul> – John Aug 25 '11 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.