Hi,
I am using the Jira Issues Macro in Confluence to diplay Jira task information in a table. It seems as if the column width of the table is set by the length of the "Column Name". However, if I have a short or two word column name, my column gets very narrow, which results in a very strange display of a longer texts. It even breaks up words if the column is too narrow. For example, if I would use a single letter as Column name, all content would be displayed in a long vertical line with only one letter in each line. I it is somehow clear what I mean. Here an example:
Is there a way to set a minimum column width or for the column to adapt to the task content, rather than to the column name?
And while we are at it, is there a way do re-order the "Coulumns to Display", or can I only add Columns at the End?
Thanks,
Felix
It is possible with the help of the Table Filter and Charts for Confluence app and its Table Transformer macro that allows advanced table cells formatting.
Wrap your Jira Issues macro into the Table Transformer macro body and use custom SQL queries, for example:
SELECT *,
FORMATWIKI("{cell:width=100px}" + 'Summary'+ "{cell}") AS 'Summary'
FROM T*
SELECT *,
FORMATWIKI("{cell:width=300px}" + 'Summary'+ "{cell}") AS 'Summary'
FROM T*
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.