Conditional Row Style

Post a few lines of the data array so we can see what is returned. Maybe add a non-existent class to the else code so we'll get something. e.g.,
row_data["style"] = {"classes": "nonFlashingRow"}


According to [Feedback] NEW Perspective Table - #30 by ynejati you seem to be styling it correctly.

Rows can now be configured with their own styles.

    { 
        "value": {   // The rows value. 
            "city": "Folsom" 
            "country": "United States", 
            "population": 1000000 
        }, 
        "style": {  // Custom row styles.
            "backgroundColor": "#F7901D",
            "classes": "some-class"
        }
    }