Something seems to have changed between Grid v5 and v7. Previously, I could set the overall grid text color with a simple style prop on the Grid itself.
<Grid style={{ color: "#000" }} ... />
That no longer works, so now I need to use a custom CSS class like this:
.k-grid-black .k-table-td {
color: #000;
}
<Grid className="k-grid-black" ... />
Seems I have to use the selector .k-table-td for that class.
This works, however, now any rowRender function can't set a custom color - it gets ignored.
Any suggestions on how to make this work better? Thanks!