Changing the link color

The Bootstrap stylesheet styles all the a elements in the app. You can override this by giving your grid a className and changing the style in a .css file in the assets folder

For example

dag.AgGrid(
    className="my-grid"
)

.my-grid a {
    color: red;
    text-decoration: underline;
}

2 Likes