Last modified by Drunk Monkey on 2023-04-26 18:21

From version 3.1
edited by Drunk Monkey
on 2021-03-22 04:09
Change comment: Install extension [clemensrobbenhaar:make-all-wiki-tables-sortable-macro/0.2]
To version 2.1
edited by Drunk Monkey
on 2021-03-01 08:43
Change comment: Migrated property [priority] from class [XWiki.WikiMacroClass]

Summary

Details

XWiki.JavaScriptExtension[0]
Caching policy
... ... @@ -1,1 +1,1 @@
1 -long
1 +forbid
Code
... ... @@ -11,12 +11,9 @@
11 11   }
12 12  
13 13   $$("#xwikicontent table").each(function(table) {
14 - if (table.getAttribute('class') !== null && table.getAttribute('class').indexOf('xwiki-livetable') >= 0) {
15 - // ignore livetables; they take care of themselves
16 - return;
17 - }
18 18   tableCounter++;
19 19   if (macro_sortabletables_sortable) {
16 + tableCounter++;
20 20   table.addClassName('grid')
21 21   table.addClassName('sortable')
22 22   table.addClassName('doOddEven');
... ... @@ -36,6 +36,7 @@
36 36   }
37 37   findSortHeader(table);
38 38   }
36 + // setFilterGrid(table.getAttribute('id'), (getHeaderRow(table)) );
39 39   }
40 40   })
41 41  });
XWiki.WikiMacroClass[0]
Macro code
... ... @@ -1,7 +1,7 @@
1 1  {{velocity output="false"}}
2 2  $xwiki.ssfx.use("js/xwiki/table/table.css")
3 3  $xwiki.jsfx.use("js/xwiki/table/tablefilterNsort.js", true)
4 -$xwiki.jsx.use("Macros.SortableTables", {'minify': true, "defer": false})
4 +$xwiki.jsx.use("Macros.SortableTables", {'minify': true})
5 5  {{/velocity}}{{velocity}}{{html clean="false"}}
6 6  <script type="text/javascript">
7 7  var macro_sortabletables_sortable = #if($xcontext.macro.params.sortable=="yes")true#{else}false#{end};