Wiki source code of Macros Manager
Last modified by Douglas R Miles on 2021/02/09 05:57
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | $xwiki.jsx.use("MacrosManager.WebHome") | ||
3 | #set($columns = ["id", "name", "description", "visibility", "link"]) | ||
4 | #set($columnsProperties = { | ||
5 | "id" : { "type" : "text", "html" : "false", "sortable": "true"}, | ||
6 | "name" : { "type" : "text", "sortable" : "true"}, | ||
7 | "description" : { "type" : "text", "sortable" : "true" }, | ||
8 | "visibility" : { "type" : "list", "class": "XWiki.WikiMacroClass", "sortable" : "true" }, | ||
9 | "link" : { "type" : "text", "filterable" : "false", "sortable" : "false" } | ||
10 | }) | ||
11 | #set($options = { | ||
12 | "className":"XWiki.WikiMacroClass", | ||
13 | "translationPrefix" : "macrosmanager.", | ||
14 | "callback" : "macrosmanager_livetable_callback" | ||
15 | }) | ||
16 | #livetable("macrosTable" $columns $columnsProperties $options) | ||
17 | {{/velocity}} |