Select extension and server side processing

Select extension and server side processing

teixeiteixei Posts: 1Questions: 1Answers: 0

Is the select extension designed to work with the server side processing option? When I page to the next set of results all the rows on that page are selected.

Here is my configuration

var table = $('#example').DataTable( {
ajax: url: '/search/documents',
type : 'POST',
contentType : 'application/json',
dataType : 'json',
accept: 'application/json',
dataSrc: 'data',
data: function ( d ) {
return JSON.stringify( d );
}
},
deferRender: true,
columns: [
{ data: 'name' },
{ data: 'position' },
{ data: 'office' },
{ data: 'extn' },
{ data: 'start_date' },
{ data: 'salary' }
],
rowId: 'extn',
select: true,
serverSide: true,
dom: 'Bfrtip'
} );```

Answers

This discussion has been closed.