I'm Using Kartik's GridView Widget,
GridView::widget([
'id'=>'crud-datatable',
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'pjax'=>true,
'contentOptions' => ['class' => 'form-control punjabi'],
'headerOptions' => ['class' => 'text-center'],
'columns' => require(__DIR__.'/_columns.php'),
])
In yii\grid\GridView class, It can be done with the following options :
[
'contentOptions' => ['class' => 'text-center'],
'headerOptions' => ['class' => 'text-center']
],
But using the above options in Kartik's GridView Class generates error: Undefined Property contentoptions.
How to go About this?
containerOptions.