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.
Asked
Active
Viewed 1,666 times
4
-
you can add custom css to Bootstrap easily, https://bootstrapbay.com/blog/customize-bootstrap/ – mlegg Sep 05 '17 at 00:49
-
Actually, I am looking to style JSGrid rather then Bootstrap. – RobLudlmsFrn Sep 06 '17 at 01:27
1 Answers
1
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;
}

cjherasmus
- 11
- 3