I have a livetable showing all pages in my wiki (similar to the page index), and want to display a column with the page tags. Its not available here: http://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable%20Macro#HParameter24columns
I don’t want a tagcloud or pre selected tag for filter, those are working fine.
So in regards to ${propertyName}
from the doc, i tried:
{{velocity}}#set($collist = ['doc.title', 'doc.creationDate', 'doc.date', 'doc.author', '${tags}'])
#set($colprops = {
'doc.title' : { 'type' : 'text' , 'size' : 30, 'link' : 'view', 'displayName' : 'Titel' },
'doc.creationDate' : { 'type' : 'date', 'displayName' : 'Erstellt' },
'doc.date' : { 'type' : 'date', 'displayName' : 'Geändert' },
'doc.author' : { 'type' : 'text', 'link' : 'author' },
'${tags}' : { 'type' : 'text'}
})
#set($options = {
'translationPrefix' : 'xe.index.',
"tagCloud" : true,
"selectedColumn":"doc.title",
"rowCount":30
})
#livetable('tb' $collist $colprops $options)
{{/velocity}}
But neither ${Tags}
nor $Tags
works. Actually the static List Property in XWiki.TagClass
is called tags
, the pretty name has a Capital Later.
Is it possible to display the tags?
Thank you very much.
Mario