10-01-2013 01:19 PM
Hello,
I want to get all the path of a document in my code XHTML but not with "name", with title as in the breadcrumbActions navigation tool.
I would like this code, but with a documentModel in parameter and not the currentDocument :
<h:column>
<nxu:dataList var="pathElement" value="#{breadcrumbActions.backendPath}">
<f:verbatim>&gt;&nbsp;</f:verbatim>
<h:outputText value="#{pathElement.name}" />
</nxu:dataList>
</h:column>
do you know how to loop on a documentModel path in xhtml ?
thanks
10-02-2013 10:55 AM
Hi,
I'm a bit late, but there's also another bean that implements this:
publishActions.getFormattedPath(model.pathAsString)
The only issue is that it concatenates documents with a hard-coded ">". Of course you could hack it with a:
publishActions.getFormattedPath(model.pathAsString).replaceAll(">", " / ")
10-02-2013 10:48 AM
Hello me,
This is the code. It's cut because some code wasn't display with this web site (1) (2) & (3).
<c:set var="tabPath" value="${fn:split(doc.path,'/')}" />
<c:set var="pathSize" value="${fn:length(tabPath)}" />
<c:set var="currentDoc" value="#{doc}" />
<c:forEach var="i" begin="1" end="#{pathSize-1}">
<c:set var="theDoc" value="#{currentDoc.parentRef}" scope="page"/>
<c:if test="#{not empty theDoc}">
<c:choose>
(1)
</c:choose>
(2)
</c:if>
</c:forEach>
(3)
(1) <c:when test="#{not empty resultPath}">
<c:set var="resultPath" value="#{currentDoc.title.concat('/').concat(resultPath)}" />
?</c:when>
<c:otherwise>
<c:set var="resultPath" value="#{currentDoc.title}" />
?</c:otherwise>
(2) <c:set var="currentDoc" value="#{documentManager.getDocument(theDoc)}" />?
(3) <h:outputText value="#{resultPath}" />
?
10-02-2013 11:25 AM
Ok, look at the other answer more simple...
10-02-2013 10:55 AM
Hi,
I'm a bit late, but there's also another bean that implements this:
publishActions.getFormattedPath(model.pathAsString)
The only issue is that it concatenates documents with a hard-coded ">". Of course you could hack it with a:
publishActions.getFormattedPath(model.pathAsString).replaceAll(">", " / ")
10-02-2013 11:24 AM
thank you very much ! Everything in one line !!! So cool ! code became ==> < c
10-02-2013 12:14 PM
Can I use this bean in MVEL or Freemarker template (and how ?) thank you
10-02-2013 12:47 PM
Sorry but it's more complicated to insert this in a template, also it depends on what templates exactly (workflow notification? other mail notifications? document template?) Anyway you'd probably have to write some Java to be able to do this.
10-02-2013 12:54 PM
Oh
10-02-2013 12:56 PM
You could post this as a new question, maybe the Nuxeo team has more to say about it.
10-02-2013 01:01 PM
Ok thanks 😉
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.