Radek
Radek

Reputation: 11121

Selecting rows does not work with materializecss css in Tabulator

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

Answers (1)

Radek
Radek

Reputation: 11121

Because "Double H" did not want to create the answer I will

  1. what I asked / reported was a bug and was fixed in 5.1.0 branch of Tabulator
  2. working solution is to use this style.

check working jsFiddle

<style>
  .tabulator-row.tabulator-selected {
    background-color: #ee6e73 !important
  }

</style>

Upvotes: 1

Related Questions