Create and edit tables

Create a table using Handsontable

GROWI allows you to create tables using Handsontable, a JavaScript library that brings spreadsheet-like table management.

Steps

  1. Click the table icon on the toolbar to open the Edit Table dialog box.
  1. Right-click on the table in the dialog to add rows and columns, etc.
  1. Click the Done button to insert the table.

Edit an already existing table in the dialog

Edit mode

  1. Move the cursor to the table in editor.

  2. Confirm that the table icon is appeared beside your cursor and click on the table icon on the toolbar.

  1. The dialog box will appear and you can edit the table.

View mode

  1. Move the cursor to the table in editor.

  2. Click the edit button that appears in the upper right corner of the table.

  1. The dialog box will appear and you can edit the table.

Writing tables in Markdown

  • Markdown
| Left align            |             Right align |        Center align        |
| :-------------------- | ----------------------: | :------------------------: |
| This column will      |        This column will |      This column will      |
| be aligned to the left| be aligned to the right |       be centered          |
  • View
table_markdown

Writing tables in TSV

  • Markdown
# No header
``` tsv
10:00 Gather
10:20 Move
```
# With header
``` tsv-h
Time Action
10:00 Gather
10:20 Move
```
  • View
table_tsv table_tsv_with_header

Writing tables in CSV

  • Markdown
# No header
``` csv
11:00,MTG
12:00,昼食
```
# With header
``` csv-h
Time,Action
11:00,Meeting
12:00,Lunch
```
  • View
table_csv table_csv_with_header