更改datatables的分页切换时的'processing'提示信息的式样

Posted zhao1949

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改datatables的分页切换时的'processing'提示信息的式样相关的知识,希望对你有一定的参考价值。

jquery.dataTables.css

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
/*   width: 100%; */
  width: 100px
  height: 40px;
  margin-left: -50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
/*   background-color: #ccc; */
/*   background-color: white; */
/*   background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0))); */
/*   background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); */
/*   background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); */
/*   background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); */
/*   background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); */
/*   background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); */
}
    function _fnProcessingDisplay ( settings, show )
    {
        if ( settings.oFeatures.bProcessing ) {
//            console.log("settings.aanFeatures.r="+settings.aanFeatures.r);
            $(settings.aanFeatures.r).css( ‘display‘, show ? ‘block‘ : ‘none‘ );
//            $(settings.aanFeatures.r).css( "background-color","#ccc");
//            $(settings.aanFeatures.r).width("100px");
        }
    
        _fnCallbackFire( settings, null, ‘processing‘, [settings, show] );
    }

 

以上是关于更改datatables的分页切换时的'processing'提示信息的式样的主要内容,如果未能解决你的问题,请参考以下文章

jquery.datatables 分页功能

如何在按钮单击时启用和禁用 jquery dataTables 的分页

ngx-datatable 可配置的分页参数

基与datatable的分页

PrimeFaces Datatable单击分页链接取消选中所有复选框

如何在 jQuery DataTables 中的分页期间滚动到第一行