我有一个这样的模态。现在我想将Kartik 的 Popover X添加到注入的表单中。
<div class="ensemble-form-add">
<?php
$content = '<p class="text-justify">sometext</p>';
echo PopoverX::widget([
'id' => 'ownShit',
'header' => 'Usage Information',
'size' => PopoverX::SIZE_LARGE,
'placement' => PopoverX::ALIGN_BOTTOM,
'content' => $content,
'toggleButton' => ['label'=>'<span class="glyphicon glyphicon-question-sign"></span>', 'class'=>'btn btn-lg btn-link'],
]); ?>
<?php $form = ActiveForm::begin(['id' => 'add ...
...
弹出按钮和对话框(隐藏)正确呈现。但是在模式中点击按钮并没有做任何事情。如果我单独打开上述表单(而不是模式),则该按钮将起作用并显示对话框。
有没有人试过这个?我是否必须设置 id 才能使其正常工作?