Searchbar boostrap 5 class
Searchbar boostrap 5 class
ECEGROUPE
Posts: 78Questions: 29Answers: 1
By defaut the searchbar have the following class form-control form-control-sm
. Is there a intregrated method in datatables to only keep form-control
and do not have form-control-sm
class ? Or a method to define the default class ?
This question has an accepted answers - jump to answer
Answers
What to do is set the class that DataTable will use:
edit Do that after you loading the DataTables JS, but before you initialise the DataTable.
Allan
It work, thank !
For anyone reading this post, this also work
$('#example_filter').find('.form-control-sm').removeClass('form-control-sm');
but the solution from Allan is better because it's built in Datatable.