Hi, as the title says, when I resized the window, table doesn't adjust to it. Here's the code:
Datatables::create([
'name' => 'uniqueTable',
'Title' => $this->params['title'],
'dataSource' => $dataSource,
'columns' => $columns,
'options' =>
[
'searching' => $searching,
'colReorder' => true,
'paging' => $paging
],
'serverSide' => $serverSide,
'cssClass' => $cssClass,
'plugins' => ['Responsive']
]);
Is there something wrong?