[xwiki-users] How do I for order a data list in xwiki?
I have the following data that I recover from the XWiki data base, but I need order it. Thanks in advance #set ($list = $xwiki.tag.getDocumentsWithTag($tag)) <div> <div id="dashboardleft"> <div id="dashboardleftcontent"> #displayDocumentList($list true $blacklistedSpaces) </div> </div> </div> <div style="clear:both; margin-bottom: 40px;"><!-- --></div> -- View this message in context: http://xwiki.475771.n2.nabble.com/How-do-I-for-order-a-data-list-in-xwiki-tp... Sent from the XWiki- Users mailing list archive at Nabble.com.
You may want to look at the velocity SortTool. http://velocity.apache.org/tools/releases/1.4/javadoc/org/apache/velocity/to... Depending on what value you want to sort by, you might need to replace getDocumentsWithTag with a custom query. Caleb abrante wrote:
I have the following data that I recover from the XWiki data base, but I need order it. Thanks in advance
#set ($list = $xwiki.tag.getDocumentsWithTag($tag)) <div> <div id="dashboardleft"> <div id="dashboardleftcontent"> #displayDocumentList($list true $blacklistedSpaces) </div> </div> </div> <div style="clear:both; margin-bottom: 40px;"><!-- --></div>
Hello, An addition to Caleb's indications is the following link: http://platform.xwiki.org/xwiki/bin/view/DevGuide/Scripting#HVelocitySpecifi... . So, this is what you need to do: #set ($sortedList = $sorttool.sort($list)) ... #displayDocumentList($sortedList true $blacklistedSpaces) ... Raluca. On Tue, Aug 31, 2010 at 2:42 PM, Caleb James DeLisle <[email protected]> wrote:
You may want to look at the velocity SortTool. http://velocity.apache.org/tools/releases/1.4/javadoc/org/apache/velocity/to...
Depending on what value you want to sort by, you might need to replace getDocumentsWithTag with a custom query.
Caleb
abrante wrote:
I have the following data that I recover from the XWiki data base, but I need order it. Thanks in advance
#set ($list = $xwiki.tag.getDocumentsWithTag($tag)) <div> <div id="dashboardleft"> <div id="dashboardleftcontent"> #displayDocumentList($list true $blacklistedSpaces) </div> </div> </div> <div style="clear:both; margin-bottom: 40px;"><!-- --></div>
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
participants (3)
-
abrante -
Caleb James DeLisle -
Raluca Stavro