Live Table component

Version 76.1 by ElenaOanaTabaranu on 2009/09/14
Warning: For security reasons, the document is displayed in restricted mode as it is not the current version. There may be differences and errors due to this.

Live Table component

Failed to execute the [velocity] macro. Cause: [The execution of the [velocity] script macro is not allowed in [xwiki:Documentation.DevGuide.FrontendResources.LiveTable.WebHome]. Check the rights of its last author or the parameters if it's rendered from another script.]. Click on this message for details.

#includeMacros("TutorialsCode.LiveTableResultsMacros")

#gridresultwithfilter("" $request.collist.split(",") "" "doc.space='Tutorials' and doc.name<>'WebHome' and doc.name<>'WebPreferences'")

The page at *TutorialsCode.LiveTableResultsMacros* should contain a copy of the default code for the live table result page. In order to extract the rating information from the wiki pages from the ~Tutorials~ space, we add a new velocity macro which will test the presence of the rating object with class *XWiki.AverageRatingsClass* and extract the rating value.
#**
 * list ratings
 *#
#macro(grid_ratings $udoc)
  #set($ratings = "")
  #set($ratingObj = "")
  #set($ratingObj = $udoc.getObject("XWiki.AverageRatingsClass"))
  #if("$!ratingObj" != "")
     #set($ratings = $ratingObj.get("averagevote"))
  #end
#end

The continue our extension of this component,
...
#elseif($colname=="_ratings"),
  #grid_ratings($udoc)
  "${colname}" : "${ratings}"
...

Get Connected