Dash AG Grid single cell styling after cell edit

Hello @Cantelli,

Welcome to the community.

You can try something that I did here:

And then the function is here:

dagfuncs.highlightEdits = function(params) {
    if (params.data.changes) {
    if (JSON.parse(params.data.changes).includes(params.colDef.field))
        {return true}
    }
    return false;
}

Basically, I added a column to the rowData to test if the column had been edited. If it was in the list, then it changes its styling.