Learn how to add multiple rows and columns to a table in the Rich Text Editor (RTE)

Amanda Jennewein
Amanda Jennewein
  • Updated

Author: Carmen Santos

Using the rich text editor

Note

The equation editor requires additional licensing. Contact your Jama Software account manager for more information.

Users familiar with HTML can use the Source in Jama Software's Rich Text Editor (RTE) to edit multiple rows and tables. Jama Software's RTE tables can be edited one cell at a time, one row at a time, and one column at a time via the UI. However, simultaneously editing multiple cells, rows, and columns is impossible via the Table Properties view.

Table properties

If you need to add multiple columns or rows simultaneously to a table, the best way is via HTML in the RTE Source. In the Source, the table is defined within the <table> HTML tag, each table row is defined with the <tr> HTML tag, and a table data/cell is defined with the <td> HTML tag.

Source


Add Rows

If your goal is to add rows, you will need to copy/paste the <tr> </tr> section as many times as rows are needed within the <tbody> </tbody> HTML tags. You can add rows above or below any pre-existing table rows. Columns must be inserted within a row.

alt" class="img-responsive" width="262" height="67" style="box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%; display: block; height: auto;"

Each <tr> </tr> section will define a row in the table.

html

table


Add Columns

Columns are defined by the number of cells within a row, so the number of columns in a table equals the number of cells in each row.

code 2

Screen%20Shot%202016-12-06%20at%2012.10.16.png

To add a column to the table, you'll need to insert a <td> HTML tag within each row. 

code 3

table 3

code 4

Screen%20Shot%202016-12-06%20at%2012.12.37.png

Also, make sure you add the <td> HTML tag to ALL the rows so you don't get an unbalanced table.

code 4

table 4

More information on editing tables via HTML can be found throughquick web search.

HTML Tables

Related to

Was this article helpful?

0 out of 0 found this helpful

Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.