Hello,
I use the x:dataList component. Note that I want to display a hashmap. Using
the forEach tag I would have something like that:
[code]
<c:out value="${item.value.album_date}"/>
[/code]
but because I use the x:dataList I have a h:outputText instead of the c:out.
Here it is:
[code]
<h:outputText value="#{item.value.album_date}"/>
[/code]
This does not seem to work. I just get the list's bullet with nothing else.
Here is the full code:
[code]
<x:dataList value="#{AlbumsAction.albums}" var="item"
layout="unorderedList">
<h:column>
<h:outputText value="#{item.value.album_date}"/>
</h:column>
</x:dataList>
[/code]
Can anyone help please?
Thanks in advance,
Julien.