How to setup server side processing and not to load the datatable right away but on a button?
With this setup:
var usersTable = $('#users').DataTable({
responsive: true,
processing: true,
serverSide: true,
autoWidth: false,
ajax: 'https://example.com/users',
..............................
the datatable is loaded straight away and I want to load it on click
Is this possible somehow?
How about: