Custom tables
If you need more custom behavior than either
EuiBasicTable or EuiInMemoryTable allow, you can opt to completely construct your own table from EUI's low-level table building block components, like EuiTableHeader and EuiTableRowCell.There are several important caveats to keep in mind while doing so:
Custom table implementations must completely handle their own selection and filtering.
You must supply a
mobileOptions.header
prop equivalent to the column header on each EuiTableRowCell so that the mobile version will use that to populate the per cell headers.Also, in order to add mobile support for selection and filtering toolbars, you will need to implement the EuiTableHeaderMobile component as a wrapper around these and use EuiTableSortMobile and EuiTableSortMobileItem components to supply mobile sorting. See demo below.
Set individual props like the truncateText
prop to cells to enforce a single-line behavior and truncate their contents, or set the textOnly
prop to false
if you need the contents to be a direct descendent of the cell.
Below is one of many ways you might set up a custom table that account for all the above notes:
Props
EuiTable
Prop | Description and type | Default value |
---|---|---|
Prop compressed# | Description and type Type: boolean | Default value |
Prop responsiveBreakpoint# | Description and type Named breakpoint. Below this size, the table will collapse Pass string | boolean | Default value m |
Prop tableLayout# | Description and type Sets the table-layout CSS property "auto" | "fixed" | Default value fixed |
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Type: string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
EuiTableBody
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Type: string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop bodyRef# | Description and type Type: Ref<HTMLTableSectionElement> | Default value |
EuiTableFooter
EuiTableFooterCell
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
EuiTableHeader
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop children# | Description and type Children must be valid DOM structure residing within ReactNode | Default value |
Prop wrapWithTableRow# | Description and type Automatically adds a wrapping boolean | Default value true |
EuiTableHeaderCell
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop align# | Description and type Type: HorizontalAlignment | Default value left |
Prop isSortAscending# | Description and type Type: boolean | Default value |
Prop isSorted# | Description and type Type: boolean | Default value |
Prop mobileOptions# | Description and type Type: Pick<EuiTableRowCellMobileOptionsShape, "show" | "only"> | Default value |
Prop onSort# | Description and type Type: NoArgCallback<void> | Default value |
Prop scope# | Description and type Type: "col" | "colgroup" | "row" | "rowgroup" | Default value |
Prop width# | Description and type Type: string | number | Default value |
Prop tooltipProps# | Description and type Allows adding an icon with a tooltip displayed next to the name EuiTableColumnNameTooltipProps | Default value |
Prop description# | Description and type Type: string | Default value |
Prop readOnly# | Description and type Shows the sort indicator but removes the button boolean | Default value |
Prop append# | Description and type Content rendered outside the visible cell content wrapper. Useful for, e.g. screen reader text. Used by EuiBasicTable to render hidden copy markers ReactNode | Default value |
EuiTableHeaderCellCheckbox
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop width# | Description and type Type: string | number | Default value |
Prop append# | Description and type Type: ReactNode | Default value |
EuiTablePagination
Prop | Description and type | Default value |
---|---|---|
Prop showPerPageOptions# | Description and type Option to completely hide the "Rows per page" selector. boolean | Default value true |
Prop itemsPerPage# | Description and type Current selection for "Rows per page". number | Default value 10 |
Prop itemsPerPageOptions# | Description and type Custom array of options for "Rows per page". number[] | Default value [10, 25, 50] |
Prop onChangeItemsPerPage# | Description and type Click handler that passes back selected ItemsPerPageChangeHandler | Default value |
Prop onChangePage# | Description and type Type: (pageIndex: number) => void | Default value |
Prop aria-controls# | Description and type Requires the string | Default value |
Prop aria-label# | Description and type Type: string | Default value |
Prop responsive# | Description and type Automatically reduces to the false | string[] | Default value |
Prop compressed# | Description and type If true, will only show next/prev arrows and simplified number set. boolean | Default value |
Prop pageCount# | Description and type The total number of pages. number | Default value |
Prop activePage# | Description and type The current page using a zero based index. number | Default value |
EuiTableRow
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop hasSelection# | Description and type Indicates if the table has a single column of checkboxes for selecting boolean | Default value |
Prop isSelectable# | Description and type Indicates that the current row's checkbox is selectable / not disabled boolean | Default value |
Prop isSelected# | Description and type Indicates the current row has been selected boolean | Default value |
Prop hasActions# | Description and type Indicates if the table has a dedicated column for actions boolean | "custom" | Default value |
Prop isExpandable# | Description and type Indicates if the row will have an expanded row boolean | Default value |
Prop isExpandedRow# | Description and type Indicates if the row will be the expanded row boolean | Default value |
EuiTableRowCell
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop valign# | Description and type Vertical alignment of the content in the cell "top" | "bottom" | "baseline" | "middle" | Default value middle |
Prop setScopeRow# | Description and type Indicates whether the cell should be marked as the heading for its row boolean | Default value |
Prop hasActions# | Description and type Indicates if the cell is dedicated to row actions boolean | "custom" | Default value |
Prop isExpander# | Description and type Indicates if the column is dedicated as the expandable row toggle boolean | Default value |
Prop mobileOptions# | Description and type Mobile options for displaying differently at small screens; EuiTableRowCellMobileOptionsShape | Default value |
Prop append# | Description and type Content rendered outside the visible cell content wrapper. Useful for, e.g. screen reader text. Used by EuiBasicTable to render hidden copy markers ReactNode | Default value |
Prop textOnly# | Description and type Creates a text wrapper around cell content that helps word break or truncate boolean | Default value true |
Prop truncateText# | Description and type Indicates whether this column should truncate overflowing text content.
boolean | { lines: number; } | Default value false |
EuiTableRowCellCheckbox
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop append# | Description and type Type: ReactNode | Default value |
EuiTableSortMobile
Prop | Description and type | Default value |
---|---|---|
Prop anchorPosition# | Description and type Type: "upCenter" | "upLeft" | "upRight" | "downCenter" | "downLeft" | "downRight" | "leftCenter" | "leftUp" | "leftDown" | "rightCenter" | "rightUp" | "rightDown" | Default value |
Prop items# | Description and type Type: ItemProps[] | Default value |
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Type: string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
EuiTableSortMobileItem
Prop | Description and type | Default value |
---|---|---|
Prop onSort# | Description and type Callback to know when an item has been clicked () => void | Default value |
Prop isSorted# | Description and type Indicates current option is the sorted on column boolean | Default value |
Prop isSortAscending# | Description and type Indicates which direction the current column is sorted on boolean | Default value |
Prop ariaLabel# | Description and type Type: string | Default value |
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Type: string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
EuiTableHeaderMobile
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop responsiveBreakpoint# | Description and type Named breakpoint. Below this size, the table will collapse Pass string | boolean | Default value m |