I am working with JSON data from a REST response that contains multiple parameters, some of which are nested. However, I only want to display specific ones.
Is there a way to hide all parameters and only show the specific ones I need? Currently, all parameters are being displayed as columns.
I do not want to manually hide each parameter using excludeParameters or setting columnDef visible = false, as the list of parameters may vary depending on the REST response.
Do you have any suggestions for how I can achieve this? My goal is to set the default visibility of parameters to false and then selectively display the ones I want by setting columnDef visible to true. Does anyone have a solution for this?
Thank you in advance, Chris