<anyxmlelement xmlns:nxdir="http://nuxeo.org/nxdirectory"/>
Nuxeo Directory tag library.
Defines tags and functions to display directory values.
Info | Value |
---|---|
ID (tag prefix) | nxdir |
URI | http://nuxeo.org/nxdirectory |
Tag | Description |
---|---|
selectItems |
Generate select items from a directory. TODO: fill all attributes doc. Example:<!-- show the subject directory entries --> <nxdir:selectItems directoryName="subject" var="item" itemValue="#{item.id}" itemLabel="#{item.vocabulary.label}" /> <!-- show the subject directory entries filtered by given list --> <nxdir:selectItems directoryName="subject" value="#{document.dublincore.subjects}" showAll="false" var="item" itemValue="#{item.id}" itemLabel="#{item.vocabulary.label}" /> |
selectItem | TODO |
selectOneListbox | TODO |
selectManyListbox | TODO |
directoryEntryOutput | TODO |
chainSelectOutput | TODO |
chainSelect | TODO |
chainSelectOne | TODO |
chainSelectMany | TODO |
chainSelectListbox | TODO |
chainSelectMultiListbox | TODO |
chainSelectStatus | TODO |
Type | Function | Description |
---|---|---|
DocumentModel | directoryEntry(java.lang.String, java.lang.String) | Returns the document model representing an entry for given directory name and entry id. |
org.nuxeo.ecm.core.api.DocumentModelList | directoryListEntries(java.lang.String, java.util.Collection) | Returns the list of document models representing entries for given directory name and given list of entry ids. |
org.nuxeo.ecm.core.api.DocumentModelList | directoryEntries(java.lang.String, java.lang.String[]) | Returns the list of document models representing entries for given directory name and given list of entry ids. |
java.lang.String | getLabelFromId(java.lang.String, java.lang.String) | Returns the label for given directory and entry id. This function is deprecated since 6.0, use directoryEntry instead. |
Output generated by Vdldoc View Declaration Language Documentation Generator.