I am using the React version. I have a function that I use to build a custom row (with buttons).
const cells = (row, col) => {
const cellProperties = {};
if (row === 0) {
cellProperties.renderer = customButtonRenderer;
cellProperties.readOnly = true;
cellProperties.disableVisualSelection = true;
}
return cellProperties;
};
…that I pass to a React component via cells={cells}
. However, when i do this, I lose the .htSearchResult
class that was formerly passed to any cell via the Search plugin.
Any recommendations on how I can restore this functionality?