I have followed the example https://editor.datatables.net/examples/api/checkbox.html to have a checkbox visible and save when changed. However, when it submits, it sends all columns in the row instead of just the checkbox. What do I need to do to have "submit: 'changed'" for this action?
Here is the code that submits (from the example)
$('#example').on( 'change', 'input.editor-active', function () {
editor
.edit( $(this).closest('tr'), false )
.set( 'active', $(this).prop( 'checked' ) ? 1 : 0 )
.submit();
} );