Bootstrap theme for JSGrid

1.7k Views Asked by At

My application is using Bootstrap and for a certain functionality JSGrid is very adequate, but JSgrid has its own colors and styles. Please let me know if you know of any Bootstrap themed JSGrid css.

1

There are 1 best solutions below

0
On

You can override the styles in the jsGrid-theme.css like this and add it to your own stylesheet after loading the jsGrid stylesheet:

.jsgrid-header-row > .jsgrid-header-cell {
    background-color: red;
    color: blue;
    font-size: 0.8em;
    font-weight: normal;
}