I'm listing out an excel by server into a single page that shows some data.. I have over 30 servers so each server is labeled under its own panel with title. How do you auto sort Panels?
Hi @Ryan Ballas
I hope you are safe and well.
Confluence doesn't have such a feature out-of-the-box.
However, Confluence gives us many ways to customize appearance on pages.
If your Confluence administrator enabled the HTML macro, you may be able to implement something on JavaScript to sort the Panel macros in your page.
Let's say you have your content organized in page sections and the panel macros are all in the same section, similar to the image below.
Then you can add an HTML macro with the following code.
<button id="sortPanelButton">Sort panels</button>
<script type="text/javascript">
$('#sortPanelButton').on('click', function () {
AJS.$('div.panel.conf-macro.output-block').sort(function(a, b) {
if (a.childNodes[0].textContent < b.childNodes[0].textContent) {
return -1;
} else {
return 1;
}
}).appendTo($('#sortPanelButton').parent());
});
</script>
When viewing the page, the user has the option to click on a button that will sort all the panels in the page, which is applied just for the current view.
Note that the JavaScript code is built on the way that it expects the button and the panels to be on the same layout section.
While this doesn't sort the panels while you are editing, it will help on displaying the information.
Let us know if that helps on your goal.
Kind regards,
Thiago Masutti
@Thiago Masutti Thanks for your comments.
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.