Changes for page Make All Tables Sortable Macro


on 2022-02-14 06:02


on 2021-03-22 04:09
Summary
Details
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -10,11 +10,6 @@ 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 - 18 18 $$("#xwikicontent table").each(function(table) { 19 19 if (table.getAttribute('class') !== null && table.getAttribute('class').indexOf('xwiki-livetable') >= 0) { 20 20 // ignore livetables; they take care of themselves ... ... @@ -29,7 +29,6 @@ 29 29 table.setAttribute('id', tableIdPrefix + tableCounter); 30 30 } 31 31 findSortHeader(table); 32 - findSortHeadRow(table); 33 33 // we do not need to call this, as we are (hopefully) before window.load 34 34 //ts_makeSortable(table); 35 35 } ... ... @@ -41,7 +41,6 @@ 41 41 table.setAttribute('id', tableIdPrefix + tableCounter); 42 42 } 43 43 findSortHeader(table); 44 - findSortHeadRow(table); 45 45 } 46 46 } 47 47 })
- XWiki.StyleSheetExtension[0]
-
- Caching policy
-
... ... @@ -1,1 +1,0 @@ 1 -long - Code
-
... ... @@ -1,8 +1,0 @@ 1 -#xwikicontent{ 2 - overflow: unset; 3 -} 4 -.sortHeader{ 5 - position: -webkit-sticky; 6 - position: sticky; 7 - top:0; 8 -}
- XWiki.WikiMacroClass[0]
-
- Cached
-
... ... @@ -1,1 +1,0 @@ 1 -No - Asynchronous rendering
-
... ... @@ -1,1 +1,0 @@ 1 -No - Macro code
-
... ... @@ -2,9 +2,6 @@ 2 2 $xwiki.ssfx.use("js/xwiki/table/table.css") 3 3 $xwiki.jsfx.use("js/xwiki/table/tablefilterNsort.js", true) 4 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 8 8 {{/velocity}}{{velocity}}{{html clean="false"}} 9 9 <script type="text/javascript"> 10 10 var macro_sortabletables_sortable = #if($xcontext.macro.params.sortable=="yes")true#{else}false#{end};
- XWiki.WikiMacroParameterClass[2]
-
- Parameter default value
-
... ... @@ -1,1 +1,0 @@ 1 -no - Parameter description
-
... ... @@ -1,1 +1,0 @@ 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,1 +1,0 @@ 1 -No - Parameter name
-
... ... @@ -1,1 +1,0 @@ 1 -sticky