fixed column header gets a border when clicked (example inside)

fixed column header gets a border when clicked (example inside)

AndersHPAndersHP Posts: 36Questions: 14Answers: 1

https://datatables.net/release-datatables/extensions/FixedColumns/examples/bootstrap.html

When clicking the fixed border, the header gets a border. How do i override this behavior so it behaves like the other column headers when clickd?

This question has an accepted answers - jump to answer

Answers

  • AndersHPAndersHP Posts: 36Questions: 14Answers: 1

    bump

  • tangerinetangerine Posts: 3,342Questions: 35Answers: 394

    What do you mean by "When clicking the fixed border" in the example?

  • AndersHPAndersHP Posts: 36Questions: 14Answers: 1

    I mean the header - clickiing the header of the fixed column! sry =)

  • allanallan Posts: 61,451Questions: 1Answers: 10,055 Site admin
    Answer ✓

    As a complete hack that will effect accessibility you can remove the outline with CSS:

    th:active { outline: none }
    

    However, as I say, then non-mouse users won't be able to see the selected element!

    This really needs a proper fix in FixedColumns I think. Added to the list!

    Allan

This discussion has been closed.