Hi, I like the (x) (/) icons a lot, and they help a lot to visualize states. But if a column only contains icons, the table cannot be sorted by clicking on the sort icon of this column.
Can this functionality be added?
There is a rejected issue for this: [CONFCLOUD-52798] Page Properties report not sorting on emoji column - Create and track feature requests for Atlassian products.
As soon the issue is open again, please go and vote for it. The icons are there for a certain reason, and used int tables there are extremely helpful. So, please Atlassian, reconsider to provide a fix.
Hi @René Herrmann,
We can suggest trying our Table Filter and Charts for Confluence app.
Its Table Filter macro recognizes emoticons, so you’ll be able to filter your table by them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Katerina, for your answer and help. This looks like a nice app, but we currently try to find out how or if it is possible to sort the column without an additional investment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@René Herrmann Seems that it is not possible out of the box.
Meanwhile, here is an example of a workaround for sorting using our app and its Table Transformer macro:
Now we create an additional column for sorting where each number corresponds to a specific emoticon:
SELECT *,
CASE WHEN T1.'Emoticons'::string = "(error)"
THEN 1
WHEN T1.'Emoticons'::string = "(tick)"
THEN 2
ELSE 0
END
AS 'Column For Sorting'
FROM T*
After publishing the page, you may sort your table using the newly created 'Column for sorting'.
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.