When we start sorting or other things datatables has option to show ‘Process’ message. All is fine , only when it hides ‘Processing’ there is still stay space where ‘Processing’ is placed. So html table jumping down when Processing showing then when data have been loaded Processing hidding but html table isn’t jumping back up so there is stay visible place for it.
Question, how to make datatable to remove Processing tag instead of just hide. Thanks
EDIT. I add html code
<div id="search_table_processing" class="dataTables_processing" style="visibility: hidden;">Processing...<img alt="< <" src="/themes/third_party/linkedin_search/img/165.gif"></div>
Well drat, I just ran into this and had to dig into it myself.
In version 1.9.0 you can search for this snippet:
(Found after searching for
visibility.)In the minified version it’s currently this (using the NuGet package):
The problem is we neglected to style
.dataTables_processing, as per the sample CSS files. Here’s what one of the samples has for styling:Once it’s styled (or
bProcessingis set to false), there shouldn’t be an issue.If you’re comfortable changing the functionality of the plug-in (if you think you can remember to change it back), then you could switch it to use display instead of visibility.