--- title: Tables category: features --- {@snippet features/build-table-source} The {@link module:table/table~Table} feature offers table creation and editing tools that help content authors bring tabular data into their documents. ## Demos ### Basic table features The editor bellow shows the basic set of table features focusing on the **structure and semantics**. These features allow users to insert new tables into the content, add or remove columns and rows, define headers, and merge multiple cells. It is also worth noting that you will find them out–of–the–box in all {@link builds/guides/overview ready–to–use editor builds}. {@snippet features/table} Use the **"Insert table"** button in the toolbar to create new tables. Focus any cell in the table to display the toolbar with buttons that will help you further shape the structure of the table. ### Table and cell styling tools In addition to the default table features described in the [previous section](#basic-table-features), the editor below comes with some additional tools that will help you modify **the look of tables and table cells**, for instance, their border color and style, background color, padding, or text alignment. {@snippet features/table-styling} Put the caret anywhere inside the table and click the **"Table properties"** button in the toolbar to open a pop–up with multiple options that will allow you to shape the look of the entire table. If you click the **"Cell properties"** button, a similar interface will appear with styling options for individual table cells. [Learn more](#configuring-styling-tools) about configuring color palettes in the table styling pop–up interfaces. By default, table styling tools are not included in the {@link builds/guides/overview ready–to–use editor builds} and must be installed separately. See the [installation](#table-and-cell-styling-tools-2) section to learn how to enable them in your editor. ## Table selection The {@link module:table/tableselection~TableSelection} plugin introduces support for the custom selection system for tables that lets you: * Select an arbitrary rectangular table fragment — a few cells from different rows, a column (or a few of them) or a row (or multiple rows). * Apply formatting or add a link to all selected cells at once. The table selection plugin is loaded automatically by the `Table` plugin and can be tested in the [demos above](#demos). ## Installation ### Basic table features The basic table features are enabled by default in all builds. The installation instructions are for developers interested in building their own, custom rich text editor. To add only the basic table features to your editor, install the [`@ckeditor/ckeditor5-table`](https://www.npmjs.com/package/@ckeditor/ckeditor5-table) package: ``` npm install --save @ckeditor/ckeditor5-table ``` Then add the `Table` and `TableToolbar` plugins to your plugin list and configure the table toolbar: ```js import Table from '@ckeditor/ckeditor5-table/src/table'; import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar'; ClassicEditor .create( document.querySelector( '#editor' ), { plugins: [ Table, TableToolbar, Bold, ... ], toolbar: [ 'insertTable', ... ], table: { contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells' ] } } ) .then( ... ) .catch( ... ); ``` ### Table and cell styling tools To enable not only the [basic table features](#basic-table-features-2) but also the rich table and cell styling tools in your editor, install the [`@ckeditor/ckeditor5-table`](https://www.npmjs.com/package/@ckeditor/ckeditor5-table) package: ``` npm install --save @ckeditor/ckeditor5-table ``` Then add the `Table`, `TableToolbar`, **`TableProperties`**, and **`TableCellProperties`** plugins to your plugin list and configure the table toolbar: ```js import Table from '@ckeditor/ckeditor5-table/src/table'; import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar'; import TableProperties from '@ckeditor/ckeditor5-table/src/tableproperties'; import TableCellProperties from '@ckeditor/ckeditor5-table/src/tablecellproperties'; ClassicEditor .create( document.querySelector( '#editor' ), { plugins: [ Table, TableToolbar, TableProperties, TableCellProperties, Bold, ... ], toolbar: [ 'insertTable', ... ], table: { contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells', 'tableProperties', 'tableCellProperties' ], // Configuration of the TableProperties plugin. tableProperties: { // ... }, // Configuration of the TableCellProperties plugin. tableCellProperties: { // ... } } } ) .then( ... ) .catch( ... ); ``` Learn more about [configuring color palettes](#configuring-styling-tools) in the table and table cell property pop–ups. Read more about {@link builds/guides/integration/installing-plugins installing plugins}. ## Configuring styling tools By default, table styling tools are not included in {@link builds/guides/overview ready–to–use editor builds} and must be installed separately. See the [installation](#table-and-cell-styling-tools-2) section to learn how to enable them in your editor. Among other formatting options, table and cell styling tools allow users to create tables with colorful backgrounds and borders. These colors can be easily picked using color palettes in the **"Table properties"** and **"Cell properties"** pop–ups. To help users choose the right colors for the content, the color palettes can be pre–configured, like in the editor below: {@snippet features/table-styling-colors} With the selection inside any table cell, use the **"Table properties"** and **"Cell properties"** buttons in the toolbar to inspect available styling and color options. ### Customizing color palettes You can use these specific configuration options to define customized color palettes for background and border colors to match your document: * {@link module:table/table~TableConfig#tableProperties `tableProperties.borderColors`} – Defines the color palette for table borders. * {@link module:table/table~TableConfig#tableProperties `tableProperties.backgroundColors`} – Defines the color palette for table background. * {@link module:table/table~TableConfig#tableCellProperties `tableCellProperties.borderColors`} – Defines the color palette for cell borders. * {@link module:table/table~TableConfig#tableCellProperties `tableCellProperties.backgroundColors`} – Defines the color palette for cell background. The above configurations **do not** impact the {@link builds/guides/integration/basic-api#setting-the-editor-data data loaded into the editor}, i.e. they do not limit or filter the colors in the data. They are used only in the user interface allowing users to pick colors in a more convenient way. For instance, to define the same color palette for all border and background configurations, use the following code snippet: ```js const customColorPalette = [ { color: 'hsl(4, 90%, 58%)', label: 'Red' }, { color: 'hsl(340, 82%, 52%)', label: 'Pink' }, { color: 'hsl(291, 64%, 42%)', label: 'Purple' }, { color: 'hsl(262, 52%, 47%)', label: 'Deep Purple' }, { color: 'hsl(231, 48%, 48%)', label: 'Indigo' }, { color: 'hsl(207, 90%, 54%)', label: 'Blue' }, // ... ]; ClassicEditor .create( document.querySelector( '#editor' ), { plugins: [ Table, TableToolbar, TableProperties, TableCellProperties, Bold, ... ], toolbar: [ 'insertTable', ... ], table: { contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells', 'tableProperties', 'tableCellProperties' ], // Set the palettes for tables. tableProperties: { borderColors: customColorPalette, backgroundColors: customColorPalette }, // Set the palettes for table cells. tableCellProperties: { borderColors: customColorPalette, backgroundColors: customColorPalette } } } ) .then( ... ) .catch( ... ); ``` ## Block vs inline content in table cells The table feature allows creating block content (like paragraphs, lists, headings, etc.) in table cells. However, if a table cell contains just one paragraph and this paragraph has no special attributes (like text alignment), the cell content is considered "inline" and the paragraph is not rendered. This means that a table cell can be in two states: with inline content or with block content. The reason for this differentiation is that most tables contain only inline content (e.g. in the [demo](#demos) above) and it is common for "data tables" to not contain any block content. In such scenario, printing out `

` elements would be semantically incorrect and also unnecessary. There are, however, scenarios where the user wants to create, for example, a list inside the table and then support for block content is necessary, too. "Rendering" here means the view layer. In the model a cell is always filled with at least a ``. This is because of consistency, as — since a cell always has some block content — the text is never directly inside ``. This also allows features like Enter support to work out of the box (since a `` exists in the model, it can be split despite the fact that it is not present in the view). ### Inline content The following is the model representation of table cells with inline content only (a single `` inside): ```html Foo Bar
``` The above model structure will be rendered to the {@link module:editor-classic/classiceditor~ClassicEditor#getData data} as: ```html

Foo Bar
``` In the editing view (the editable container in which the user edits the content), additional `` elements are created to compensate for the hidden `` elements: ```html
Foo Bar
``` ### Block content If a table cell contains any other block content than a single `` with no attributes, these block elements will be rendered. The following is a sample table with some block content (model representation): ```html Foo Bar Some title Baz
``` The above model structure will be rendered to the data and to the editing view as: ```html

Foo

Bar

Some title

Baz

``` At the moment it is not possible to completely disallow block content in tables. See the [discussion on GitHub](https://github.com/ckeditor/ckeditor5-table/issues/101) about adding a configuration option that would enable that. Add a 👍 if you need this feature. ## Common API ### UI components The table plugins register the following UI components:
{@link builds/guides/integration/configuration#toolbar-setup Component} name Registered by
The 'insertTable' dropdown {@link module:table/table~Table}
The 'tableColumn' dropdown
The 'tableRow' dropdown
The 'mergeTableCells' split button
The 'tableProperties' button {@link module:table/tableproperties~TableProperties}
The 'tableCellProperties' button {@link module:table/tablecellproperties~TableCellProperties}
#### Toolbars The {@link module:table/tabletoolbar~TableToolbar} plugin introduces two balloon toolbars for tables. * The content toolbar shows up when a table cell is selected and it is anchored to the table. It is possible to {@link module:table/table~TableConfig#contentToolbar configure} its content. Normally, the toolbar contains the table-related tools such as `'tableColumn'` and `'tableRow'` dropdowns and `'mergeTableCells'` split button. * The table toolbar shows up when the whole table is selected, for instance using the widget handler. It is possible to {@link module:table/table~TableConfig#tableToolbar configure} its content. ### Editor commands
{@link framework/guides/architecture/core-editor-architecture#commands Command} name Command class Belongs to (top–level plugin)
'insertTable' {@link module:table/commands/inserttablecommand~InsertTableCommand} {@link module:table/table~Table}
'insertTableColumnLeft' {@link module:table/commands/insertcolumncommand~InsertColumnCommand}
'insertTableColumnRight' {@link module:table/commands/insertcolumncommand~InsertColumnCommand}
'insertTableRowAbove' {@link module:table/commands/insertrowcommand~InsertRowCommand}
'insertTableRowBelow' {@link module:table/commands/insertrowcommand~InsertRowCommand}
'removeTableColumn' {@link module:table/commands/removecolumncommand~RemoveColumnCommand}
'removeTableRow' {@link module:table/commands/removerowcommand~RemoveRowCommand}
'selectTableColumn' {@link module:table/commands/selectcolumncommand~SelectColumnCommand}
'selectTableRow' {@link module:table/commands/selectrowcommand~SelectRowCommand}
'setTableColumnHeader' {@link module:table/commands/setheadercolumncommand~SetHeaderColumnCommand}
'setTableRowHeader' {@link module:table/commands/setheaderrowcommand~SetHeaderRowCommand}
'mergeTableCellRight' {@link module:table/commands/mergecellcommand~MergeCellCommand}
'mergeTableCellLeft' {@link module:table/commands/mergecellcommand~MergeCellCommand}
'mergeTableCellUp' {@link module:table/commands/mergecellcommand~MergeCellCommand}
'mergeTableCellDown' {@link module:table/commands/mergecellcommand~MergeCellCommand}
'splitTableCellVertically' {@link module:table/commands/splitcellcommand~SplitCellCommand}
'splitTableCellHorizontally' {@link module:table/commands/splitcellcommand~SplitCellCommand}
'tableBorderColor' {@link module:table/tableproperties/commands/tablebordercolorcommand~TableBorderColorCommand} {@link module:table/tableproperties~TableProperties}
'tableBorderStyle' {@link module:table/tableproperties/commands/tableborderstylecommand~TableBorderStyleCommand}
'tableBorderWidth' {@link module:table/tableproperties/commands/tableborderwidthcommand~TableBorderWidthCommand}
'tableAlignment' {@link module:table/tableproperties/commands/tablealignmentcommand~TableAlignmentCommand}
'tableWidth' {@link module:table/tableproperties/commands/tablewidthcommand~TableWidthCommand}
'tableHeight' {@link module:table/tableproperties/commands/tableheightcommand~TableHeightCommand}
'tableBackgroundColor' {@link module:table/tableproperties/commands/tablebackgroundcolorcommand~TableBackgroundColorCommand}
'tableCellBorderStyle' {@link module:table/tablecellproperties/commands/tablecellborderstylecommand~TableCellBorderStyleCommand} {@link module:table/tablecellproperties~TableCellProperties}
'tableCellBorderColor' {@link module:table/tablecellproperties/commands/tablecellbordercolorcommand~TableCellBorderColorCommand}
'tableCellBorderWidth' {@link module:table/tablecellproperties/commands/tablecellborderwidthcommand~TableCellBorderWidthCommand}
'tableCellHorizontalAlignment' {@link module:table/tablecellproperties/commands/tablecellhorizontalalignmentcommand~TableCellHorizontalAlignmentCommand}
'tableCellWidth' {@link module:table/tablecellproperties/commands/tablecellwidthcommand~TableCellWidthCommand}
'tableCellHeight' {@link module:table/tablecellproperties/commands/tablecellheightcommand~TableCellHeightCommand}
'tableCellPadding' {@link module:table/tablecellproperties/commands/tablecellpaddingcommand~TableCellPaddingCommand}
'tableCellBackgroundColor' {@link module:table/tablecellproperties/commands/tablecellbackgroundcolorcommand~TableCellBackgroundColorCommand}
'tableCellVerticalAlignment' {@link module:table/tablecellproperties/commands/tablecellverticalalignmentcommand~TableCellVerticalAlignmentCommand}
We recommend using the official {@link framework/guides/development-tools#ckeditor-5-inspector CKEditor 5 inspector} for development and debugging. It will give you tons of useful information about the state of the editor such as internal data structures, selection, commands, and many more. ## Contribute The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5-table.