Changes for page Make All Tables Sortable Macro


on 2021-03-22 04:09

on 2020-04-11 16:36
Summary
Details
- XWiki.JavaScriptExtension[0]
-
- Caching policy
-
... ... @@ -1,1 +1,1 @@ 1 - long1 +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};