I am having some issue getting column data to stay hidden. I am creating a custom property with the dataset that I need. In this dataset is information I want hidden but want to be able to access for formatting reasons. When I set up the column configurations and hide the column containing the appropriate date, it hides just fine. However, when I add an addition column configuration to display a view for some iconography, the hidden data is auto-populating into the new column even though the "field" names do not match.
Make sure all of your column configurations have exactly matching field names specified.
They do. The only column name that does not have a corresponding dataset name is the iconography column that I added a configuration for
All columns must have a corresponding name in props.data
. If no match, the table picks one. Simplest solution would be to add a dummy column to your data and put that in props.columns
.
Odd workout but whatever works. Thanks