Search code examples
javascriptphpjquerytwitter-bootstrapyii2

popover and yii2


I cant create popover in yii2.

Button doesn't do anything

JS

$(function () {
  $('[data-toggle="popover"]').popover()
})

Connect JS

$this->registerJsFile('/assets/js/popover.js',  ['position' => yii\web\View::POS_END]);

PHP/HTML

<button type="button" class="btn btn-lg btn-danger"
data-toggle="popover" title="Popover title" data-content="Popover Here">
Click to toggle popover
</button>

Reslove

Thanks dev.mraj

$this->registerJsFile('/js/boot/bootstrap.js',['position' => yii\web\View::POS_END,'depends'=>['yii\web\JqueryAsset']]);

When create List need use

 $('#test_div').html(options).find('[data-toggle="popover"]').popover();

Solution

  • try this

    $this->registerJsFile('/assets/js/popover.js', ['position' => yii\web\View::POS_END,'depends'=>['yii\web\JqueryAsset']]);