Style changes while using full numbers in datatable version 1.9.4
Style changes while using full numbers in datatable version 1.9.4
Hi, I am using Datatable version 1.9.4.
A style change is occurring if I am adding the "full_numbers" option.
Please see the attached images.
It looks good according to my theme while I don't use any type of options but it adds the default style if I use "full_numbers" option.
Normal
$('#table').dataTable({
});
Full Number
$('#table').dataTable({
"sPaginationType": "full_numbers",
});
I want to keep the style normal as you can see. Is there a way?
This question has accepted answers - jump to:
Answers
1.9.4 is no longer supported - 1.10.13 is the current release.
What is happening is that the full_numbers style in 1.9 doesn't use the Bootstrap classes. The pagination plug-ins were rewritten for 1.10 to make that kind of thing easier.
Allan
Thank You, Allan. That means I have to write the classes/css code to make it reflect.
Yes. Or just update to a supported version.
Allan