Overview:
The {table} macro and it's related macros allow you to create custom table layouts in Confluence content...
While tables can easily be created using standard Wiki Notation, they are somewhat inflexible - for example, you can't make a cell span multiple rows or columns and you can't add your own styling to them.
This group of macros allow you to create more customised tables in your content.
Parameters:
This macro is used as shown below:
{table:border=1}
{tr}
{td}cell 1{td}
{td}cell 2{td}
{tr}
{table}
Obviously, there's not much use to creating such a simple table - in the examples later on this page you'll see more comprehensive uses for these macros.
| Parameter | Required | Default | Notes |
|---|---|---|---|
| align | left | Define the horizontal position of the table in relation to the surrounding content:
|
|
| bgcolor | transparent | The background colour of the table - this can be any valid HTML colour reference. The default is "transparent". | |
| border | 0 | The border width of the table in pixels. Confluence defaults tables to have no border, but you can force a border by setting this parameter to an integer, eg. border=1 | |
| cellpadding | 1 | Specifies the gap, in pixels, between the cell walls and their content. A non-negative integer, eg. cellpadding=3 | |
| cellspacing | 2 | Specifies the spacing between cells. A non-negative integer, eg. cellspacing=4 | |
| frame | border | Specifies which sides of the border surrounding the table will be visible:
|
|
| rules | all | Defines which divider lines are shown:
|
|
| summary | A text summary of the table for screen readers, etc. |
In addition to the table-specific parameters, there are several general parameters as follows:
| Parameter | Required | Default | Notes |
|---|---|---|---|
| id | The unique HTML id for the table instance. | ||
| class | One or more CSS classes for the table instance. | ||
| title | The text to display in a tooltip when the mouse hovers over the table. | ||
| style | One or more inline styles to apply to the table. | ||
| dir | The text direction to use within the table. Values are 'ltr' (Left to right) or 'rtl' (Right to left) | ||
| lang | The language to use for the table. |
The body of the table macro should contain a table-row macro (or tr for short) macro which in turn should contain one or more table-cell macro (or td for short).









Comments (52)
Sep 24, 2007
Dmitry Mislivecs says:
How it is possible multiple rows or columns? I have not found any parameter for ...How it is possible multiple rows or columns? I have not found any parameter for this.
Oct 09, 2007
Gary Weaver says:
Look at the parameters tab above. Here is an example of how to use and define c...Look at the parameters tab above.
Here is an example of how to use and define colspan to have a Confluence table cell span 2 cell widths (a.k.a. two merged cells):
{table}
{tr}
{td}one cell wide
{td}
{td}one cell wide
{td}
{td}one cell wide
{td}
{tr}
{tr}
{td:colspan=2}2 cells wide
{td}
{td}one cell wide
{td}
{tr}
{table}
Nov 17, 2007
Rodrigo Silveira says:
How do I add a blank cell? Presently it consolidates it with its neighboor!How do I add a blank cell? Presently it consolidates it with its neighboor!
Nov 17, 2007
Guy Fraser says:
What wiki notation are you using and what browser are you using? You might need ...What wiki notation are you using and what browser are you using? You might need to put a space or other character (eg. \ ) in the cell if using a broken browser such as MSIE.
Nov 20, 2007
Alex Ho says:
Please see below comment – I didn't realize that wiki markup was "live" in...Please see below comment – I didn't realize that wiki markup was "live" in the comments and that using table markup would adversely affect the page.
Nov 20, 2007
Alex Ho says:
Is it possible to do a simultaneous colspan/rowspan? For example: {td:colsp...Is it possible to do a simultaneous colspan/rowspan? For example:
{td:colspan=2, rowspan=3}I've been able to get colspan and rowspan to work individually, just not together.
Nov 29, 2007
Peter Krist says:
It works for me. Correct your delimiter from a comma to a vertical bar. colspan...It works for me. Correct your delimiter from a comma to a vertical bar.
colspan=2|rowspan=3
Feb 25, 2008
tmb says:
Is there a way to maintain the column widths when exporting to PDF? Ex. Cell 1C...Is there a way to maintain the column widths when exporting to PDF?
Ex.
When I export to PDF, all the columns are the same width.
Feb 25, 2008
Guy Fraser says:
Unfortunately not, it's an issue with Confluence's PDF export - please comment a...Unfortunately not, it's an issue with Confluence's PDF export - please comment and vote on the associated issue on Atlassians public tracker: http://jira.atlassian.com/browse/CONF-2079
Apr 30, 2008
emanuela says:
hi, is there any possibility to have a table and to be able to do most of the a...hi,
is there any possibility to have a table and to be able to do most of the actions (sort,filter, ...) like in excel?
thanks!
May 11, 2008
david page says:
I have a work-around that works for me with confluence v 2.7.3. Macros such as ...I have a work-around that works for me with confluence v 2.7.3.
Macros such as {info} and {tip} are formatted with tables (a column for the icon, a column for the message) and these items sort-of look ok in a generated PDF. So after a little digging I deduce that PDF export honors html <colgroup>!
So include a <colgroup> in your table. Something like this:
{table:width=100%|border=1} {colgroup}<col width='5%'><col width='10%'><col width='15%'><col width='20%'>{colgroup} {tr} {td}5%{td} {td}10%{td} {td}15%{td} {td}20%{td} {td}50%{td} {tr} {table}... where {colgroup} is a user-macro you would write to render the colgroup as html into the page - you can make your own variant
Only define widths for the first (n-1) columns of an n-column table and everything should PDF well. Otherwise the PDF generates a table that goes to the very edge of the page.
Jul 15, 2009
P says:
EDIT: Invalid content removedEDIT: Invalid content removed
Jul 15, 2009
P says:
I see my previous post didn't come through ok, probably because I had pasted wik...I see my previous post didn't come through ok, probably because I had pasted wiki markup in it. Here it goes again...
I'm trying to get the colspan macro to work, but failing.
I've got this in my wiki markup:
{colgroup}<col width='80px'><col width='auto'>{colgroup}
What happens is that the string "<col width='80px'><col width='auto'>" gets rendered in my content, instead of being inserted in the HTML.
The colgroup macro is recognized by Confluence and it's not a user defined macro.
I looked up this macro in the docs, on the internet and in the macro inserter in the editor, but no usefull samplecode or directions how to use it could be found.
Who can help me out?
Basically what i'm trying to achieve is a table with 2 columns, with a header that spans those 2 columns. The table needs to use table-layout: fixed and a width: 100% to make sure it uses the full content area, but doesn't spill over the edges of the content area's edges when there's too much content. Due to the table-layout:fixed, I need to explicitly specify the column's widths. Due to the TH spanning both columns, I need to do this using the colgroup - col notation in HMTL.
TIA,
P.
Jul 15, 2009
P says:
Figured it out. Inside the colgroup macro you need to use the column macro. Goo...Figured it out. Inside the colgroup macro you need to use the column macro.
Good that it works, too bad it wasn't documented anywhere.
P.
May 07, 2008
Jon Hertzig says:
If you specify cell widths (by pixels or %), it doesn't come out in PDF (renders...If you specify cell widths (by pixels or %), it doesn't come out in PDF (renders columns equal width). But you can work around it by using colspan, to specify relative widths for the columns. In your example, if you had {td:colspan=2} for Cell 1 and {td:colspan=3} for cell 2, the relative column widths would be retained in the PDF export (at least are for me with Confluence 2.7.3 and Themebuilder 3!)
Feb 27, 2008
NoName says:
Help! I'm using the table macro after some text. Both the text and the table ma...Help! I'm using the table macro after some text. Both the text and the table macro are within a column that is within a section. However, I've got a TON of whitespace between the end of the text and the start of the table.
I've read elsewhere that this extra added whitespace is a bug with the table macro. However, the only "fix" I've seen is to run all of your table markup (including td and tr) into one long line (no spacing). Unfortunately, my table is big--so running all of the markup together isn't a feasible option for me because it would be tricky to edit.
I really need to keep this table in a column so that I can use the second column to "fake" a sidebar (like those found in HTML). (Of course, I'm open to other suggestions for "faking" a sidebar if anyone knows of any.)
Does anyone know why this is happening and/or what I can do to fix it? I've tried a thousand variations and nothing has worked. Argh!
For your reference a VERY simplified version of my markup looks something like this:
{section}{column:width=75%} text text more text * a bullet * another bullet with text {table:border=1} {td}{tr}row 1{tr}{td} {td}{tr}row 2{tr}{td} {td}{tr}row 3{tr}{td} {table} {column} {column:width=25%} {panel} blah blah text in the panel {panel} {column} {section}Feb 27, 2008
Guy Fraser says:
There's two possible causes for that: 1. You're using an old version of the plu...There's two possible causes for that:
1. You're using an old version of the plugin (and likely an old version of Confluence) - such bugs were present in the early releases but were fixed some time ago. If you're using old versions, please upgrade Content Formatting Macros plugin to the latest version, which may require you to upgrade to a more recent version of Confluence beforehand.
2. Disable the "Compatibility Macros" plugin in the Plugin Manager - it has a conflicting table macro which make a right mess of things :s
Feb 28, 2008
NoName says:
Guy, Thank you so much for your prompt, helpful response! Unfortunately, I'm no...Guy,
Thank you so much for your prompt, helpful response!
Unfortunately, I'm not the server admin. So, I can't make either of the fixes you suggested. However, I have passed your recommendations on to the admin team and hope that they will upgrade our server to a newer version of Confluence (or disable the compatibility macros plugin as you suggested) soon! I spent WAY too much time trying to get rid of that darn whitespace-- it nearly sent me over the edge.
Thanks again--I really appreciate your help.
Apr 12, 2008
Douglas Rider says:
How do you get the table macro to align cells vertically? I am embedding panels...How do you get the table macro to align cells vertically? I am embedding panels of various sizes into the table cells and rather than aligning the panel to the top of the cell, it centers it vertically in the cell.
Thanks!
Apr 25, 2008
Pär Johansson says:
You probably already found this out, but there is an undocumented parameter, val...You probably already found this out, but there is an undocumented parameter, valign, which works just like its html namesake.
So for instance,
{td:valign=top}will align the cell contents to the top.
/ Pär
Apr 29, 2008
Douglas Rider says:
Thanks!Thanks!
May 12, 2008
ID Levy says:
How do you use the style parameter, which can take more than one attribute=value...How do you use the style parameter, which can take more than one attribute=value? E.g., style="font-size: 12pt; color: red"
Also, can you use all of the listed parameters in {tr} and {td} ?
Jul 01, 2008
fannod says:
Is there any way I can change the border style, do dashed, or solid or whatever?...Is there any way I can change the border style, do dashed, or solid or whatever? It seems that the "border" parameter only takes an integer value.
I would like to match the 1px wide light grey borders of the default CSS.
Jul 01, 2008
Guy Fraser says:
Use inline styles (or alternatively specify a class and then define styles for t...Use inline styles (or alternatively specify a class and then define styles for that class in your stylesheets).
{table:style=border:1px dotted #ccc; background-color: #eee;} {tr} {td}a cell{td} {tr} {table}Jul 01, 2008
fannod says:
Thanks for the fast response guy, that worked like a charm!Thanks for the fast response guy, that worked like a charm!
Jun 09, 2010
Benjie Wolicki says:
Where can I find a list of inline styles that can be defined in a style paramete...Where can I find a list of inline styles that can be defined in a style parameter?
Jun 09, 2010
Guy Fraser says:
http://www.w3schools.com/css/default.asphttp://www.w3schools.com/css/default.asp
Aug 07, 2008
liz armstrong says:
This is just an FYI. I was having extreme difficulty with the macros. You cannot...This is just an FYI. I was having extreme difficulty with the macros. You cannot nest any of them. I used sections and columns, then a card/deck inside a column, then tables inside the card/deck to align two macros (favpages and recently updated). No matter what I did, I could not get the macros to be aligned. It seems they were defaulting to centering. It is not disclosed in this documentation as a parameter but you can align content towards the top of the cell using:
{td:valign=top} to push content to the top.Aug 07, 2008
Guy Fraser says:
1. Disable the "Compatibility Macros" plugin - it contains a rogue table macro t...1. Disable the "Compatibility Macros" plugin - it contains a rogue table macro that really screws things up. This is almost certainly the cause of the problem you are experiencing with valign.
2. You are correct in that they cannot be nested - it's a limitation of Confluence wiki notation (why they didn't put a "/" at the start of macro closing tags I have no idea). It really sucks and Atlassian are aware of the issue but a solution is not likely in the foreseeable future.
Nov 11, 2008
mns says:
Here's the existing table and the markup I use for it: system type ser...Here's the existing table and the markup I use for it:
|| system || type || serial || mem || hd || os || function || validate || owner || project || ssm || vnc || status || | sys-001 | Ultra 10 | | | | Solaris | | Dead | Username | Proj_Name | | | | | {color:#009966}sys-002{color} | {color:#009966}V100{color} | {color:#009966} xxxxxxxxxx {color} | {color:#009966} RAM {color} | {color:#009966} HD {color} | {color:#009966} Solaris {color} | {color:#009966} storage {color} | | {color:#009966} User {color} | {color:#009966} {color}\\ | {color:#009966} {color} | {color:#009966} {color} | {color:#009966} {color} |As you can see, it gets difficult to maintain when you're dealing with almost 75 rows like that. How do I duplicate that using the table macro ?
Jan 28, 2009
David Vess says:
Anyone know what the content model is for cellpadding? I'm working under the La...Anyone know what the content model is for cellpadding? I'm working under the Layout tab in Layout Builder 3.2.1. I want change the padding in the nav bar to push the crumb menu over a bit more. The code starts with "
Jan 29, 2009
Christian Fecteau says:
@David Vess: cellpadding is a standard html attribute that takes only one value:...@David Vess:
cellpadding is a standard html attribute that takes only one value: http://www.w3.org/TR/html401/struct/tables.html#adef-cellpadding
In your case, you would need that:
{table:style=padding:0 0 0 10px;}
Mar 13, 2009
Andrew Brister says:
Hi, I am having a problem with the "full notation guide" in confluence. You migh...Hi,
I am having a problem with the "full notation guide" in confluence. You might know that it pulls the information from the plug-in page for each plug-in you have loaded so you have a quick reference for each macro and all it's parameters. Somewhat similar to the Parameters card in the deck on this page. However, the entry for this table macro and for the td, tr, th, and other related macros is very lacking.
I enjoy writing this language, but without the proper documentation of these macros it's very difficult, and I'd rather not bother the community with something as simple as. "How do I use the nowrap parameter of a td macro?"
I would love to see some more documentation of this very handy macro, either from this website or another.
Thank you very much.
-AB
Mar 22, 2011
Kevin Benton says:
I had the same question then I thought about valid XHTML and realized that to us...I had the same question then I thought about valid XHTML and realized that to use that properly, it would be nowrap="nowrap" so I tried nowrap=nowrap and voila - it worked. The documentation for a lot of the capabilities in Confluence really needs to be improved.
Apr 22, 2009
Bill Henry says:
I'm struggling with getting the table widths to stay constant. I've tried the c...I'm struggling with getting the table widths to stay constant. I've tried the colspan parameter but it doesn't seem to make a difference.
Here is the code:
{table:border=1|cellspacing=1|cellpadding=5}
{tr}
{td:colspan=10|align=center|bgcolor=#005172} {color:white}Column 1 Heading{color}
{td}
{td:colpan=30|align=center|bgcolor=#005172} {color:white}Column 2 Heading{color}
{td}
{tr}
{td:colspan=10|valign=top}Row 1 Label
{td}
{td:colspan=30|valign=top} {toggle-cloak:id=Idone|exclusive=true} List
{cloak:id=Id1}
Some descriptive text
{metadata-report:Page|label=some labels|sort=Page asc}
{cloak}
{td}
{tr}
{td:colspan=10|valign=top}Row Two
{td}
{td:valign=top} {toggle-cloak:id=Id2|exclusive=true} List
{cloak:id=Id2}
Some text
{metadata-report:Page|label=somelabels|sort=Page asc}
{cloak}
{td}
{tr}
{table}
I have 5 rows built in this way.
The first row comes back fine. The second, then word wraps and compresses to the left when the cloak togggle is triggered. Same with the 3rd row. Then 4th an d 5th rows work fine.
I experimented with multiple colspan parameters but it doesn't seem to make a difference. Even using something like colspan=50 yields the same results.
Any suggestions are appreciated.
Sep 11, 2009
P says:
Hi, I sort of need to group sets of rows together, because I have to parse, at...Hi,
I sort of need to group sets of rows together, because I have to parse, at a later stage the HTML resulting from all my wiki markup and find a set of rows that belong together.
In HTML I would do this by embedding the sections of rows that belong together in a <tbody></tbody> (a <table></table> can have multiple tbody's) and give the tbody a unique ID.
Giving each row a unique ID is not really an option, due to the sheer number of rows, the HTML would become too bloated.
Since the number of rows within each section can differ, I cannot do stuff based on index either.
Using multiple tables for the grouping is also not an option, because of the layout mechanism used for the table.
So, basically, I need to be able to insert tbody tags through the wiki markup.
Note: we're also exporting our content to PDF, so that also has to work.
TIA,
P.
Sep 14, 2009
P says:
Well, I can answer my own question: Just try it, it works :-| P.Well, I can answer my own question: Just try it, it works :-|
P.
Oct 26, 2009
margaret atmar says:
hi. i am working with several departments who have tables on different pages wi...hi. i am working with several departments who have tables on different pages with many cells that display the same information (i.e. project title, project i.d., status, supporting pages). is it possible to reference cells within tables on other pages like excel does? this way, if the "supporting pages" cell is changed on the "mother" page, the new information is also visible on all of the "daughter" pages.
thanks for your help, i am rather new at this.
Oct 26, 2009
Guy Fraser says:
There's a 'Metadata' plugin in the Plugin Exchange (plugins.atlassian.com) that ...There's a 'Metadata' plugin in the Plugin Exchange (plugins.atlassian.com) that lets you do that kind of thing IIRC.
Nov 18, 2009
Nithya Kannan says:
Can you give me an example for the dir and lang parameters to the table macro an...Can you give me an example for the dir and lang parameters to the table macro and the different possible values used for it.
Jul 09, 2010
Wayne Parker says:
I cannot seem to get the gridlines to show up in my table except for the headers...I cannot seem to get the gridlines to show up in my table except for the headers/border. I tried coding using {rules=all}, but still nothing. Does anyone know why or how I can resolve?
I am using the below code:
{table:border=2|rules=all} {tr} {th}Header 1{th} {th}Header 2{th} {tr} {tr} {td}Test{td} {td}Test{td} {tr} {table}But it ends up looking something like this:
Jul 12, 2010
Rodrik Wade says:
My questions is probably very similar to Wayne Parker's: How do I get a simple ...My questions is probably very similar to Wayne Parker's: How do I get a simple grid-like table with 1 px lines between all cells? Something like:
Thanks
May 18, 2011
Eric Schuldt says:
The code below produces all rules {table:border=1|rules=all} {tr} {td:colsp...The code below produces all rules
{table:border=1|rules=all} {tr} {td:colspan=2} 1 + 2 {td} {tr} {tr} {td} 3 {td} {td} 4 {td} {tr} {table}1 + 2
3
4
Aug 18, 2010
Jake Fowler says:
The functionality of the {table} macro seems to have regressed for me; it looks ...The functionality of the {table} macro seems to have regressed for me; it looks like this was a result of our server admin's upgrade from Confluence version from 3.1 to 3.3.
Most of my pages are created using the {table} macro for text & picture layout design purposes (I am already using {section} and {column} for a sidebar menu, so I have to use {table}s within each column of a section). However, the tables within my code - which looked perfect before our upgrade to 3.3 - now look completely messed-up, with cells within the same {table-row} falling on to different rows.
I have investigated and found that there are unexpected <tr> flags being inserted into the generated HTML code. I have found two triggers for this: line breaks (for code-readability) within the Wiki Markup code; and {align} flags used within table cells.
If I create the table below, with all table content bundled onto one line of Wiki Markup code, I get the output I would expect (although the <tr> is embedded within another <tr>; this seems unnecessary, but I don't know whether or not this is responsible for any of the problems I am seeing):
{table:width=400px} {tr} {td:bgcolor=#ccccff|width=200px}Left side{td}{td:bgcolor=#ffcccc|width=200px}Right side{td} {tr} {table}<table class="wiki-table" cellpadding="0" cellspacing="0" border="0">
<tr>
<th>
<tr>
<td width="200px" bgcolor="#ccccff">
Left side
</td>
<td width="200px" bgcolor="#ffcccc">
Right side
</td>
</tr>
</th>
</tr>
</table>
However, the same table code with line breaks added to the Wiki Markup code for readability results in each cell being assigned to its own <tr> (the second of which is defined as a "table-odd" class row), and the text enclosed in <p> flags:
{table:width=400px} {tr} {td:bgcolor=#ccccff|width=200px} Left side {td} {td:bgcolor=#ffcccc|width=200px} Right side {td} {tr} {table}<table class="wiki-table" cellpadding="0" cellspacing="0" border="0">
<tr>
<th>
<tr>
<td width="200px" bgcolor="#ccccff">
<p>
Left side
</p>
</td>
</th>
</tr>
<tr class="table-odd">
<td>
<td width="200px" bgcolor="#ffcccc">
<p>
Right side
</p>
</td>
</tr>
</td>
</tr>
</table>
Alternatively: if I keep the code all on one line, but use an {align} tag to center-align the text in the first cell, I get the same <tr> problem:
{table:width=400px} {tr} {td:bgcolor=#ccccff|width=200px}{align:center}Left side{align}{td}{td:bgcolor=#ffcccc|width=200px}Right side{td} {tr} {table}<table class="wiki-table" cellpadding="0" cellspacing="0" border="0">
<tr>
<th>
<tr>
<td width="200px" bgcolor="#ccccff">
<div class="" align='center'>
Left side
</div>
</th>
</tr>
<tr class="table-odd">
<td>
</td>
<td width="200px" bgcolor="#ffcccc">
Right side
</td>
</tr>
</td>
</tr>
</table>
Can you reproduce this problem? (I can't reproduce it within this comment using wiki-markup). Could it be an issue with our local server plug-ins? There is a mention above of formatting problems when the 'Compatibility Macros' plug-in is enabled, but it does not appear we have that installed. Are the problems I have described consistent with the 'Compatibility Macros' formatting issues?
I originally published this problem in Atlassian's JIRA database, and was told to log an issue here. I tried to open a JIRA issue but it won't let me (the page says "Your evaluation of JIRA has expired, you will not be able to create any more issues."). Another user noted on the Atlassian JIRA issue that they are experiencing the same problem, so it doesn't appear to be isolated to myself.
A workaround might suffice for this, but I need to be able to align within individual cells, and I'd prefer not to have all table information crammed onto one line.
Any help you can provide would be greatly appreciated!
Aug 26, 2010
Joe Suever says:
I couldn't reproduce your problem using on Confluence 3.3 and TB 4.1.3 simply us...I couldn't reproduce your problem using on Confluence 3.3 and TB 4.1.3 simply using your wiki markup examples above.
I was interested because I was having issues with having 6 tables on a page. I finally debugged my issue where I was also using sections and columns (turns out that I had an extra column macro on my page).
You might check to make sure that the section and column macros are all in the right places (those are easy to miss and can exhibit unpredictable behavior). I'd suggest to copy your wiki markup on a new page (without any sections/columns) and make sure you observe the same behavior.
Good luck at finding the issue.
Nov 11, 2010
Joseph Davis says:
I've added this to the navigation portion of theme builder: builder-breadcrumbs...I've added this to the navigation portion of theme builder:
So that I can have the Add/Edit/Tools options.
It seems to work fine, but for some reason I am getting a white border around the Add/Edit/Tools area even though I've turned off the border on the navigation options.
Is there a way to turn off the border either through a macro or css?
I've tried a lot of different ways and looking for some help.
Thanks!!
Mar 16, 2011
Ron Lussier says:
I am having problems with the following code: {table:cellpadding=10} {tr} {...I am having problems with the following code:
{table:cellpadding=10} {tr} {td:rowspan=2}photo{td} {tr} {tr} {td:valign=top}20 Oct 2008{td} {td:valign=top}The team.{td} {tr} {tr} {td:rowspan=2}photo{td} {tr} {tr} {td:valign=top}24 May 2010{td} {td:valign=top}Bob At Work{td} {tr} {table}Unfortunately, this displays as follows:
It should display:
Why are the rows being merged?
Mar 17, 2011
Sharon Hinde says:
Should your 'rowspan' be 'colspan' ? {table:cellpadding=10} {tr} {td:colsp...Should your 'rowspan' be 'colspan' ?
{table:cellpadding=10} {tr} {td:colspan=2}photo{td} {tr} {tr} {td:valign=top}20 Oct 2008{td} {td:valign=top}The team.{td} {tr} {tr} {td:colspan=2}photo{td} {tr} {tr} {td:valign=top}24 May 2010{td} {td:valign=top}Bob At Work{td} {tr} {table}which produces:
Jun 30, 2011
Zlatko Baumberger says:
Hi, was this macro used to generate the great looking table (IT-Support Features...Hi, was this macro used to generate the great looking table (IT-Support Features and Pricing) in the Screenshots section of the http://www.adaptavist.com/display/Plugins/Content+Formatting page?
How did you format this table?
Jul 08, 2011
Keelan Runnalls says:
Hi, I am trying to put a table inside of a panel which is working fine but whe...Hi,
I am trying to put a table inside of a panel which is working fine but when the page size changes the table shrinks to wrap the text while the panel remains at the maximum size of the screen. Is there any way to set the table size to the maximum size of the screen like the panel macro does?
Thanks,
Keelan
Jul 26, 2011
Rishikesh Kumar says:
Set table:width=100% Do let me know if that doesn't work. If still you face pro...Set table:width=100%
Do let me know if that doesn't work. If still you face problem, Could you please post your source code here.
Jul 29, 2011
Keelan Runnalls says:
Thanks, that worked out great! I thought that I had tried that before but it wor...Thanks, that worked out great! I thought that I had tried that before but it works now. Thank you very much.