Changes for page Make All Tables Sortable Macro


on 2021-03-01 08:43


on 2022-02-14 06:02
Summary
Details
- XWiki.JavaScriptExtension[0]
-
- Caching policy
-
... ... @@ -1,1 +1,1 @@ 1 - forbid1 +long - Code
-
... ... @@ -10,10 +10,18 @@ 10 10 } 11 11 } 12 12 13 + var findSortHeadRow = function(table) { 14 + var thCell = table.descendants(); 15 + thCell[0].children.item(0).addClassName('sortHeader'); 16 + } 17 + 13 13 $$("#xwikicontent table").each(function(table) { 19 + if (table.getAttribute('class') !== null && table.getAttribute('class').indexOf('xwiki-livetable') >= 0) { 20 + // ignore livetables; they take care of themselves 21 + return; 22 + } 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'); ... ... @@ -21,6 +21,7 @@ 21 21 table.setAttribute('id', tableIdPrefix + tableCounter); 22 22 } 23 23 findSortHeader(table); 32 + findSortHeadRow(table); 24 24 // we do not need to call this, as we are (hopefully) before window.load 25 25 //ts_makeSortable(table); 26 26 } ... ... @@ -32,8 +32,8 @@ 32 32 table.setAttribute('id', tableIdPrefix + tableCounter); 33 33 } 34 34 findSortHeader(table); 44 + findSortHeadRow(table); 35 35 } 36 - // setFilterGrid(table.getAttribute('id'), (getHeaderRow(table)) ); 37 37 } 38 38 }) 39 39 });
- XWiki.WikiMacroClass[0]
-
- Cached
-
... ... @@ -1,0 +1,1 @@ 1 +No - Asynchronous rendering
-
... ... @@ -1,0 +1,1 @@ 1 +No - Macro code
-
... ... @@ -1,7 +1,10 @@ 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 +#if($xcontext.macro.params.sticky=="yes") 6 + $xwiki.ssx.use("Macros.SortableTables") 7 +#end 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};
- XWiki.StyleSheetExtension[0]
-
- Caching policy
-
... ... @@ -1,0 +1,1 @@ 1 +long - Code
-
... ... @@ -1,0 +1,8 @@ 1 +#xwikicontent{ 2 + overflow: unset; 3 +} 4 +.sortHeader{ 5 + position: -webkit-sticky; 6 + position: sticky; 7 + top:0; 8 +}
- XWiki.WikiMacroParameterClass[2]
-
- Parameter default value
-
... ... @@ -1,0 +1,1 @@ 1 +no - Parameter description
-
... ... @@ -1,0 +1,1 @@ 1 +set to "yes", if the tables header should stick to the top of the screen when scrolling on a long table - Parameter mandatory
-
... ... @@ -1,0 +1,1 @@ 1 +No - Parameter name
-
... ... @@ -1,0 +1,1 @@ 1 +sticky