As the title says, I cannot move or scroll the table right, because there is no horizontal scrollbar. When I actually change the browser's window's width the scrollbars magically appears. However after just loading the page, its not visible at all - screenshoot below (as you can see action column and part of a string is cut out).
Here is the view code, however it does not matter at all, simple GridView without any options behaves the same way:
<?= GridView::widget([
'options' => ['id' => 'job-grid'],
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'pjax' => true,
'perfectScrollbar' => true,
'pjaxSettings' => [
'options' => [
'id' => 'job_index_pjax',
'enablePushState' => false,
],
],
'resizableColumns' => true,
'resizableColumnsOptions' => ['resizeFromBody' => true],
'persistResize' => true,
'responsiveWrap' => false,
'toolbar' => [
['content' =>
GridView::clearFiltersButton()
. '{toggleData}'
. $export
. ($createJobButton ?? '')
. ($deleteMultipleJobsButton ?? ''),
],
],
'toggleDataOptions' => GridView::getToggleDataOptions(),
'panel' => [
'type' => GridView::TYPE_DEFAULT,
'after' => Icon::i('info')
. ' '
. Yii::t('app', 'Use checkboxes to select items for export. If none selected, currently visible items will be exported. '),
],
'columns' => [