Good day everybody,
I am currently create a Table of some defects which are read out of JIRA.
Now i want to limit the maximum height of the columns to a defined value (like 50px).
I tried with "FORMATWIKI("{cell:hight=50px}"..."function but i could not limit the height. I can only set the mimimum hight to a definded value.
I also tried "Stylesheet" and the following term:
td
{
max-height: 50px;
}
But also no positive reaction.
My Question: Can i limit the maximum hight of all table columns and who do i do that?
Thanks for helpt.
Kind regards.
Welcome to the community.
No you can't limit the maximum height of a table column ootb.
You can if you have a 3rd party app from the Atlassian Marketplace.
You would need Table and Filter charts app, this can provde this feature FORMATWIKI, https://docs.stiltsoft.com/tfac/cloud/advanced-table-cells-formatting-58426218.html
Hi @Stefan.Pertl ,
As you've mentioned the FORMATWIKI function and the Stylesheet tab, we suppose that you already use our Table Transformer macro from Table Filter, Charts & Spreadsheets for Confluence (as @Marc - Devoteam has kindly suggested).
So, if to talk about the FORMATWIKI option, please follow the syntax from the link given above:
not
FORMATWIKI("{cell:hight=50px}
but
FORMATWIKI("{cell:height=50px}
What concerns the Stylesheet tab, you may try the following code:
td {
height: 50px !important;
}
But your original example works for us just fine. If the tags are wrong and you are not on Cloud but on Data Center, you may have an old app's version. The current one is 13.2.0 - please update if required.
If you are still stuck, please refer to our support directly for further investigation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.