I'd like to save the sorting I apply to a table in the Wiki; is this possible?
This is a very old question ... but it still came up when I was searching. Yes, Confluence tables now (by default) support column sorting by the reader ... but sometimes (as the author) you want to permanently save the table pre-sorted so that it always comes up a certain way.
It is possible to do this if you have access to a text editor that will let you replace newline and tab characters (regular-expressions). I have a Mac, and I opened a Unix terminal and used sed for this purpose.
sed -e $'s/\t/|/g' -e 's/^/|/' ttt.txt
Hey Mason,
I would say, that this is possible by writing a plugin:
Would you like this bahaviour for all tables or just selected ones?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Bummer, that doesn't really help. Since I have to edit the table in the Editor, I really need sorting in there, if anywhere...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think so, but using the Table-plus macro you can specify an auto sort column so that it always initially shows with that column sorted ascending or descending.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Table plus sorts auto-number rows like:
1
10
100
101
102
instead of
1
2
3
4
....
How do I enforce the latter?
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.