This was from a previous posting, but wanted to follow up.
I am using the validator function on a cell passing in a regex. When I use the standard out-of-box cell renderer, it correctly changes the color of the cell to red when it fails validation.
However, If I use a custom renderer, the cell doesn’t change color, it just uses my renderer.
The validation logic is still firing behind the scenes, but there is no visual update to the cell.
My question is, how can I solve this?
If the cellproperties passes in a valid state, I could customize the render myself, but I don’t see any attributes in cellproperties or any other properites that are passed into the custom renderer.
How can I update the cell appearance to show in invalid state via my custom renderer?