Is there a way in Jquery Datatables plugin to not hide rows on small screen? Now it hides the overflowed cells and opens on pressing the button. I'd like to have all data visible initially but can't find such option in docs.
UPD1: Initialization code:
$('.schedule_table').DataTable( {
responsive: true,
paging: false,
bFilter: false,
bInfo: false,
aaSorting: [],
columnDefs: [
{ type: 'title-string', targets: [0, 6] },
{ targets: 7, orderable: false }
]
} );
Now it looks like this:
Trying to make it look like this INITIALLY
because I want all data to be visible without need to press the (+) button.

