на мой взгляд. php
<?php echo Tabs::widget([
'items' => [
[
'label' => 'One',
'content' => 'Anim pariatur cliche...',
'active' => true
],
[
'label' => 'Two',
'content' => 'Anim pariatur cliche...',
'headerOptions' => [...],
'options' => ['id' => 'myveryownID'],
],
?>
<div class="row" id="content1">
...some html...
</div>
<div class="row" id="content2">
...some html...
</div>
Как передать id="content1"
на Tabs::widget(['items' =>['label' => 'one', 'content' => $content1]])
, чтобы я мог вызывать его по id в каждом содержимом. возможно, используя pjax по id, но все еще не знаю как
Спасибо