Details
- 
    Improvement 
- 
    Resolution: Fixed
- 
    Major 
- 
    9.8
Description
You shouldn't have to write this:
{{velocity}}
#set($columns = ['doc.location'])
#set($columnsProperties = {
    'doc.location' : { 'html' : true}
})
#set($options = {
   'className': 'XWiki.XWikiUsers',
   'rowCount': 10
})
#livetable('users' $columns $columnsProperties $options)
{{/velocity}}
Instead you should be able to just write:
{{velocity}}
#set($columns = ['doc.location'])
#set($columnsProperties = {
})
#set($options = {
   'className': 'XWiki.XWikiUsers',
   'rowCount': 10
})
#livetable('users' $columns $columnsProperties $options)
{{/velocity}}
Attachments
Issue Links
- is related to
- 
                    XWIKI-15266 Automatically set the content to HTML when using a "User list" property in Livetables -         
- Open
 
-