Bootstrap - custom dom rendering
Bootstrap - custom dom rendering
fyrye
Posts: 3Questions: 1Answers: 1
I am not sure if this is intended or not.
Effectively defining a custom dom
option prevents the Bootstrap 3 col-sm
elements from being rendered around the info, pagination, length and search elements, even when using the default value.
See example: https://jsfiddle.net/a5socumc/1/
Versus: https://jsfiddle.net/a5socumc/2/
jQuery(function($) {
$('#example').DataTable({
"dom": "flrtip"
});
});
This discussion has been closed.
Answers
Looked at the source and figured it out.
dom
is extended on the DataTable.defaults withand so on