Display selected documents in FancyBox

Hi,

I want to display in a fancybox, names of documents selected in a folder (before launch automation). In the fancybox, I can show the name of the folder with currentDocument.title EL Expression. Can i retrieve selected documents names with an EL Expression in my fancybox ?

Thanks

0 votes

1 answers

1697 views

ANSWER



<c:forEach var="docSelected" items="#{documentsListsManager.getWorkingList('CURRENT_SELECTION')}" >
  <h:outputText value="#{docSelected.title}" />
</c:forEach>
1 votes