Every plain html table I create within a Confluence page using the html macro turns into a sortable table (by heading). Is there a way to stop this? I don't want the table to be sortable at all.
Thanks!
Eddie
Hi Eddie,
The sortable behaviour is applied to the table because of the class "tablesorter" I think:
<table class="confluenceTable tablesorter">
Remove that class and the sorting options disappear. I've confirmed this with Firebug by removing that class on the fly.
Within Confluence my first attempt to do this relied on the following code being added to the page:
{html} <script> jQuery(document).ready(function(){ jQuery('table.tablesorter').removeClass('tablesorter'); }); </script> {html}
While this code executes without a problem, it would seem that the tablesorter class is applied dynamically to the tables, as both the class and the sorting behaviour are still on the tables (as shown by inspection with Firebug). This is not a great situation, as our dynamic code is fighting against the standard Confluence dynamic code (usually Confluence wins!).
If you have the Adaptavist Content Formatting plugin installed, then I'd opt for using the table macros as a quick fix. These will give you full control over the styles applied to the table, so you can simply not specify "tablesorter" as a class and all should be well.
Hope this helps,
Charles
Bob, Charles,
Thank you both for your replies! It is correct that the jquery code does remove the sorter class from the table, but the table is still sortable. I even tried removing the sortable classes from the table head <tr> and <th> tags since I noticed a sorter class applied to them as well. Still no luck.
Thanks again!
Kind regards,
Eddie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to remove the confluenceTable and confluenceTd classes with similar code:
<script> jQuery(document).ready(function(){ jQuery('table.confluenceTable').removeClass('confluenceTable'); jQuery('td.confluenceTd').removeClass('confluenceTd'); }); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One workaround to make it not sortable is to add a merged cell to the table.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
See CONF-26220
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Within an HTML macro:
<script> jQuery(document).ready(function(){ jQuery('table').toggleClass('tablesorter doNotSort'); }); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.