Reputation: 11121
I was working on my project I needed to select some rows. But it did not work. Debugging uncovered that the cause of such behaviour is tabulator_materialize.min.css
. If I do not use this css every thing works fine. working jsFiddle
To replicate the issue try to select all rows one by one.
Anyone could suggest how to make it work? I use materializecss in the project so it makes sense to use it for Tabulator too.
Upvotes: 1
Views: 79
Reputation: 11121
Because "Double H" did not want to create the answer I will
check working jsFiddle
<style>
.tabulator-row.tabulator-selected {
background-color: #ee6e73 !important
}
</style>
Upvotes: 1