Data (Accessor) Columns
Data columns are used to display data and are the default columns that are created when you create a column with an
accessorKey or accessorFn.The table can perform processing on the data of a data column, such as sorting, filtering, grouping, etc.
The other type of column that you can make is a display column, which you can learn more about in the next section.
Accessors (Connect a column to data)
Each column definition must have at least an
accessorKey (or a combination of an id and accessorFn) and a header property. The accessorKey/accessorFn property is the key that will be used to join the data from the data keys. The header property is used to display the column header, but is also used in other places in the table.Method 1 - Using an accessorKey (Recommended)
The simplest and most common way to define a column is to use the
accessorKey property. The accessorKey property is the key that will be used to join the data from the data keys.The
accessorKey must match one of the keys in your data, or else no data will show up in the column. The accessorKey also supports dot notation, so you can access nested data.By default, the
accessorKey will double as the id for the column, but if you need the id of the column to be different than the accessorKey, you can use the id property in addition.Method 2 - Using an accessorFn and id
You can alternatively use the
accessorFn property. Here are at least three ways you can use it.In each case, the
id property is now required since there is no accessorKey for MRT to derive it from.Custom Header Render
If you want to pass in custom JSX to render the header, you can pass in a
Header option in addition to the header string property.Theheader(lowercase) property is still required and still must only be a string because it is used within multiple components in the table and has string manipulation methods performed on it.
Custom Cell Render
Similarly, the data cells in a column can have a custom JSX render with the
Cell option.Custom Footer Render
If you want to pass in custom JSX to render the footer, you can pass in a
Footer option. If no custom markup is needed, you can just use the footer string property.The footer cells can be a good place to put totals or other summary information.
See the Customize Components Guide for more ways to style and customize header and cell components.
Enable or Disable Features Per Column
In the same way that you can pass props to the main
<MantineReactTable /> component to enable or disable features, you can also specify options on the column definitions to enable or disable features on a per-column basis.See all the column options you can use in the Column Options API Reference.
Set Column Widths
This topic is covered in detail in the Column Resizing Guide, but here is a brief overview.
Setting a CSS (sx or style) width prop will NOT work. Mantine React Table (or, more accurately, TanStack Table) will keep track and set the widths of each column internally.
You CAN, however, change the default width of any column by setting its
size option on the column definition. minSize and maxSize are also available to set the minimum and maximum width of the column during resizing.However, the column sizes might not change as much as you would expect. This is because the browser treats
<th> and <td> elements differently with in a <table> element by default.You can improve this slightly by changing the table layout to
fixed instead of the default auto in the mantineTableProps.The columns will still try to increase their width to take up the full width of the table, but the columns that do have a defined size will have their width respected more.
To learn more about how table-layout
fixed vs auto works, we recommend reading this blog post by CSS-Tricks.Disable Column Growing
By default, columns grow to fill the width of the table. However, you can disable this behavior by setting the
flexGrow css for the table head and body cells to 0 when the layoutMode prop is also set to "grid". This is covered in more detail in the Column Resizing Guide.Set Column Alignment
By default, all columns are left-aligned. You can change the alignment of a column by setting the
align option to either "center", "right", or "justify" in the mantineTableHeadCellProps and mantineTableBodyCellProps props/column options.First Name | Last Name | Age | Salary |
|---|---|---|---|
| Homer | Simpson | 39 | $53,000.00 |
| Marge | Simpson | 38 | $60,000.00 |
| Bart | Simpson | 10 | $46,000.00 |
| Lisa | Simpson | 8 | $120,883.00 |
| Maggie | Simpson | 1 | $22.00 |
1-5 of 5