I am trying to use renderPartial function and Bootstrap classes.
This is my function in the controller file:
public function actionPrintReport() {
Yii::$app->response->format = 'pdf';
return $this->renderPartial('_myReport', []);
}
This is my _myReport file that is rendered: My own styles works but not the Bootstrap classes.
<div class="box box-warning">
<div class="box-body">
Text
</div>
</div>
But the result doesn't show any Bootstrap class:
I also tried renderAjax but the same result.