Answer the question
In order to leave comments, you need to log in
How to customize dropdown menu in Yii2?
Below is my menu implementation in yii2:
echo Nav::widget([
'options' => ['id' => 'topnav','class' => 'navbar-default center-block text-center'],//.navbar-nav
'items' => [
['label' => 'О нас', 'url' => ['/site/about']],
['label' => 'История', 'url' => ['/site/history']],
['label' => 'Деятельность', 'url' => ['/site/activities'],
'options' => ['id' => 'down_menu'],
'items' => [
['label' => 'Наши собаки', 'url' => ['/site/history'],'options' => ['id' => 'down_history']],
['label' => 'Наши волонтёры', 'url' => ['/site/event'],'options' => ['id' => 'wn_history']],
['label' => 'Реабилитация', 'url' => ['/activities/reabilitation'],'options' => ['id' => 'n_history']],
['label' => 'Спонсорам и партнёрам', 'url' => ['/activities/sponsor']],]],
['label' => 'Мероприятия', 'url' => ['/site/event']],
['label' => 'СМИ о нас', 'url' => ['/site/smi']],
],
]);
<ul>
<li>
<div id="блок на всю ширину">
<ul>
<li>
<li>
<.ul>
</div>
</li>
</ul>
['label' => 'Деятельность', 'url' => ['/site/activities'],
?><div id="hjk"><?php
'options' => ['id' => 'down_menu'],
'items' => [
['label' => 'Наши собаки', 'url' => ['/site/history'],'options' => ['id' => 'down_history']],
['label' => 'Наши волонтёры', 'url' => ['/site/event'],'options' => ['id' => 'wn_history']],
['label' => 'Реабилитация', 'url' => ['/activities/reabilitation'],'options' => ['id' => 'n_history']],
['label' => 'Спонсорам и партнёрам', 'url' => ['/activities/sponsor']],]],
?></div><?php
['label' => 'Мероприятия', 'url' => ['/site/event']],
<ul id="w0" class="dropdown-menu"><li id="down_history"><a href="/index.php?r=site%2Fhistory" tabindex="-1">Наши собаки</a></li>
<li id="wn_history" class="active"><a href="/index.php?r=site%2Fevent" tabindex="-1">Наши волонтёры</a></li>
...
Answer the question
In order to leave comments, you need to log in
1. Yes you can, through items
['label' => 'Наши собаки','options' => ['id' => 'down_history'], 'items'=>[
['label' => 'Наши волонтёры', 'url' => ['/site/event'],'options' => ['id' => 'wn_history']],
]],
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question