in jsf how to render a collection object which is returned by the EL expres
hi,
i want to render a collection elements on the view page without the dataGrid. Can I use jstl for this some thing like
<c:forEach items="#{newsfeed.values}" var="row" >
<tr><td class="tableCell" width="200"> ${row.city} </td>
<td> ${row.temp}</td>
</tr>
</c:forEach>
any suggestions ,
many thanx,
vijaycanaan

