我有一個類似這樣的jqgrid:
我想更改所選行的rownum文本顏色,以便在突出顯示時它可以像其余文本一樣是白色的。
我通過在CSS中這樣做來改變默認顏色:
.jqgrow .jqgrid-rownum { background-color: transparent; background-image: none; color:#ffffff}
但是我不知道如何為高亮狀態做同樣的事情。
我試過了。ui-狀態-突出顯示但是不起作用。
你可以這樣做:
.ui-state-highlight > .jqgrid-rownum{color: red !important}
編輯:示例