I am using Material-table (https://material-table.com/#/) for my project. I have implemented the "detail panel" feature (https://material-table.com/#/docs/features/detail-panel) and have enabled search feature as well.
To my knowledge, the "search" function will only search against "string" values in any column in the table.
My detail panel contains text inside of an html pre tag.
detailPanel={rowData => {
return <pre style={preCss}>{rowData.releaseNote}</pre>;
}}
What I want to know is:
Is it possible to also make the "search" function search against data in the "detail panel". If yes, how ?