How to customize the Processing message
How to customize the Processing message
Furburger
Posts: 37Questions: 8Answers: 0
Simply modify the ".dataTables_wrapper .dataTables_processing" class in CSS:
For example:
<style>
.dataTables_wrapper .dataTables_processing {
background-color:red;
}
</style>
This discussion has been closed.
Replies
Here is my complete class:
.dataTables_wrapper .dataTables_processing {
position: absolute;
top: 30%;
left: 50%;
width: 30%;
height: 40px;
margin-left: -20%;
margin-top: -25px;
padding-top: 20px;
text-align: center;
font-size: 1.2em;
background:none;
}
And this makes it look a little bit more user friendly: