app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_cell
The Advanced Table also allows for rendering custom components within individual Cells. To achieve this, you can make use of the optional customRenderer
item within each columnDefinition. This function gives you access to the current Cell’s value if you just want to use that with a custom Kit, but it also gives you access to the entire row
object. The row object provides all data for the current row. To access the data, use row.original
which is the entire data object for the current row. See the code snippet below for 3 separate use cases and how they were acheived.
See here for more indepth information on columnDefinitions are how to use them.
See here for the structure of the tableData used.