Bootstrap search filter clear feature not working
Bootstrap search filter clear feature not working
In the Bootstrap styled version of DataTables the search filter does not display an 'X' for clearing the input. The other style variations of DataTables display the 'X' for clearing the input. I'm trying to determine if this is this an issue directly related to how Bootstrap styles input fields?
I noticed this on a table I was producing but also found the issue with the example versions of tables found here:
https://datatables.net/examples/styling/bootstrap.html ( no 'x' for clearing input )
The other style variations have the ability to clear the search filter input
https://datatables.net/examples/styling/foundation.html
Thank you for any help!
(moved to Bug-Reports)
This question has an accepted answers - jump to answer
Answers
Yes.
Bootstrap adds
-webkit-appearance: textfield
among other styles which overrides the defaulttype="search"
input styling.You would need to take this up with the Bootstrap folks.
Allan
Thanks!