How do you remove paging from statesave?

How do you remove paging from statesave?

smoldovanskiysmoldovanskiy Posts: 59Questions: 7Answers: 0

This is what I came up with but it does not seem to work. What is the field I need to use? delete data.page; does not work.

stateSaveParams: function (settings, data) {
data.columns.forEach(function (column) {
delete column.visible;
delete column.search;
});

            delete data.page;
        },

This question has an accepted answers - jump to answer

Answers

Sign In or Register to comment.