Skip to main content
2.1.1Next5.0.35.0.25.0.15.0.04.0.94.0.84.0.73.2.03.1.03.0.13.0.02.1.12.0.101.0.0
Version: 2.1.1

Table

The Table component is used to display information in a structured way. Tables are divided into rows and columns, with the first row and column explaining what the content of that row or column contains. They are useful for giving an overview of raw information to the users, but can have the drawback of being overly information dense.

Basic Usage

<triton-table></triton-table>
<TritonTable/>
<html> 
<head>
<script type="module">
import { defineCustomElements } from '~node_modules/@kognifai/triton-cl-core/loader/index.es2017.js';
defineCustomElements();
</script>
</head>
<body>
<triton-table></triton-table>
</body>
</html>

Variants

With component

A table can be created using the Triton Table props columns and data. Pass an array of TableColumn objects to the columns property to describe the header of the table. Pass an array of TableData objects to the data property to describe the cells of the table.

<triton-table 
[columns]="[
{
dataIndex: 'nodeId',
key: 'nodeId',
title: 'Node ID',
},

...

]"

[data]="[
{
key: 1,
nodeId: '16385',
logicalNetwork: 'Floatel Test',
hostName: 'n16386-nndf-001',
type: 'Router',
description: 'Cisco809-Common'
},

...

]"
>
</triton-table>

With classnames

The second options is to add a triton-table tag around a w3 standard HTML Table. This options can be used for more detailed management of the table.

AdviceGuidanceOther Words
Contribute to TritonUse these docs pagesFind us on Teams
Get in touch with us!Share these docs pagesCheck out the Triton Wiki
<triton-table>
<table>
<tr>
<th>Advice</th>
<th>Guidance</th>
<th>Other Words</th>
</tr>
<tr>
<td>Contribute to Triton</td>
<td>Use these docs pages</td>
<td>Find us on Teams</td>
</tr>
<tr>
<td>Get in touch with us!</td>
<td>Share these docs pages</td>
<td>Check out the Triton Wiki</td>
</tr>
</table>
</triton-table>

Context Menu

By setting the render-actions-style property on the table to context-menu the table will render as such.

<triton-table render-actions-style="context-menu"
[columns]="[...]"
[data]="[...]">
</triton-table>

Playground

API

Properties

triton-table

PropertyDescriptionTypeDefault
actionsDescribe action buttons to show in each table rowTableRowAction[]-
columnsDescribe columns to show in the table. Table headersTableColumn[]-
dataThe full set of table data to be displayed in the tableTableData[]-
identification-property-nameThe name of the property of the TableData item used for identificationUsed to set the data-indentificator attribute ot each row DIV elementstring'key'
render-actions-styleSet the kind of rendering type for actionsIf is set to icons, actions will be rendered as iconsIf is set to context-menu, actions will be rendered as triton-menu-items in triton-drop-downcontext-menu icons'icons'
show-hover-effectAllow hover over effect for table rowsboolean-

triton-table-cell

PropertyDescriptionTypeDefault
cell-typeIf header is given the cell will render as th, else it will render as tddata header-
colspanSpecifies the number of columns a cell should spannumber-
headersSpecifies one or more header cells a cell is related tostring-
rowspanSets the number of rows a cell should spannumber-

triton-table-group

PropertyDescriptionTypeDefault
group-typeset the type of the table groupbody colgroup foot head'body'

triton-table-row

PropertyDescriptionTypeDefault

Events

NameTypeDescriptionExtra
atRowClickCustomEvent<CustomEvent<any>>Emitted when a table row is clicked.-
atRowMouseOutCustomEvent<CustomEvent<any>>Emitted when the mouse goes out of a table row.-
atRowMouseOverCustomEvent<CustomEvent<any>>Emitted when the mouse goes over a table row.-
atDropdownStateChangeCustomEvent<boolean>Emit boolean when state of the dropdown change-
atClickCustomEvent<void>The default click behavior of the button-
atSelectCustomEvent<string>Emit when the key prop changes-
atClickCustomEvent<void>The default click behavior of the button-
selectedItemContentCustomEvent<MouseEvent>Emitted when the content of the menu item is selected-

Slots

Main

takes any kind of markup element

<triton-table>
<div></div>
</triton-table>

Details

Depends on