DataTables fixed headers misaligned with columns in wide tables

前端 未结 21 1579
悲&欢浪女
悲&欢浪女 2020-11-30 19:23

Problem

When using the sScrollX, sScrollXInner and/or sScrollY to achieve a fixed header table with its inner content scroll

21条回答
  •  离开以前
    2020-11-30 20:06

    Instead using sScrollX,sScrollY use separate div style

    .scrollStyle
     {
      height:200px;overflow-x:auto;overflow-y:scroll;
     }
    

    Add below after datatable call in script

     jQuery('.dataTable').wrap('
    ');

    Its working perfectly after many tries.

提交回复
热议问题