On dataTable scroll data should load from server side and append to existing records

前端 未结 2 2112
逝去的感伤
逝去的感伤 2021-02-11 06:01

using node js and bootstrap I am developing a web application . I have a table implemented using Data Table. I am performing my search and sort using server side code . Initiall

2条回答
  •  天涯浪人
    2021-02-11 06:23

    I know this is an old post, but see: https://datatables.net/extensions/scroller/examples/initialisation/server-side_processing.html

    From what I can see you should just have to add:

        scroller: {
            loadingIndicator: true
        }
    

    To your .dataTable({ init.

提交回复
热议问题