Scroll issue in Jquery DataTable

前端 未结 1 1814
春和景丽
春和景丽 2021-02-04 08:46

I am not sure if I am repeating the question if yes guide to the right place :)

I am using Data table and trying to implement Horizontal Scrolling and found this link

1条回答
  •  北海茫月
    2021-02-04 09:29

    I had a similar issue, but solved it in a different way.

    I modified the sDom parameter to wrap the table in an extra div:

    sDom: 'r<"H"lf><"datatable-scroll"t><"F"ip>',
    

    I then applied the following styles to the .datatable-scroll class:

    /**
     * Makes the table have horizontal scroll bar if its too wide for its container
     */
    .datatable-scroll {
        overflow-x: auto;
        overflow-y: visible;
    }
    

    http://datatables.net/usage/options#sDom

    0 讨论(0)
提交回复
热议问题