colvis button dropdown with Bootstrap 5 seems to have an issue

colvis button dropdown with Bootstrap 5 seems to have an issue

gerald345gerald345 Posts: 2Questions: 1Answers: 0

Description of problem:
I'm planning on using colvis for my project and was looking for examples of using the colvis button with Bootstrap 5 when I came across this example here: https://datatables.net/extensions/buttons/examples/styling/bootstrap5.html

But it seems that the check mark is not rendered well in this example as shown by the attached image.

Compare that with another example without Bootstrap 5 here: https://datatables.net/extensions/fixedcolumns/examples/initialisation/colvis.html

Unlike the first image, the other colvis has check marks for each column name. Is this intentional or a possible issue? And how do I fix this so that there is check mark for every column name when using Bootstrap 5? Thanks!

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 62,858Questions: 1Answers: 10,344 Site admin
    Answer ✓

    100% a bug - sorry I missed that one!

    The workaround is to add:

    .dt-button {
      position: relative;
    }
    

    to your CSS.

    I've committed a fix (Bootstrap 4 had the same issue) and will do a release tomorrow with the change.

    What do you think of the new dark mode?

    Allan

  • gerald345gerald345 Posts: 2Questions: 1Answers: 0

    Thank you for this, allan!

    The dark mode looks awesome!

Sign In or Register to comment.