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

From version 1.1
edited by Drunk Monkey
on 2020-04-11 16:36
Change comment: Install extension [clemensrobbenhaar:make-all-wiki-tables-sortable-macro/0.1]
To 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]

Summary

Details

XWiki.JavaScriptExtension[0]
Caching policy
... ... @@ -1,1 +1,1 @@
1 -forbid
1 +long
Code
... ... @@ -11,9 +11,12 @@
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 + }
14 14   tableCounter++;
15 15   if (macro_sortabletables_sortable) {
16 - tableCounter++;
17 17   table.addClassName('grid')
18 18   table.addClassName('sortable')
19 19   table.addClassName('doOddEven');
... ... @@ -33,7 +33,6 @@
33 33   }
34 34   findSortHeader(table);
35 35   }
36 - // setFilterGrid(table.getAttribute('id'), (getHeaderRow(table)) );
37 37   }
38 38   })
39 39  });
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})
4 +$xwiki.jsx.use("Macros.SortableTables", {'minify': true, "defer": false})
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};