admin管理员组文章数量:1341428
I have for the past day got stuck on finding the best way to use angular to control a menu list with sub-menus.
With jQuery you can just listen after a click event on a specific type of element like a <li>
and add a class to its child element for a menu to open.
I'm trying to do the same thing like the menu on this page .html, with Angular. But can't find the correct way by using my own directive or existing ones like ng-hide and ng-show.
If anyone have an example og guides on how to do this the best way, my day would be saved. :)
I'm also new to angular so learning new thing every day.
I have for the past day got stuck on finding the best way to use angular to control a menu list with sub-menus.
With jQuery you can just listen after a click event on a specific type of element like a <li>
and add a class to its child element for a menu to open.
I'm trying to do the same thing like the menu on this page http://geedmo./themeforest/wintermin/dashboard.html, with Angular. But can't find the correct way by using my own directive or existing ones like ng-hide and ng-show.
If anyone have an example og guides on how to do this the best way, my day would be saved. :)
I'm also new to angular so learning new thing every day.
Share edited Oct 29, 2014 at 18:05 Artyom Pranovich 6,9628 gold badges43 silver badges60 bronze badges asked Oct 26, 2014 at 8:27 BentBent 631 gold badge1 silver badge5 bronze badges 1- Hi Artyom, i'm trying to have my menulist with sub menus functioning as the menu on the site I referred to. When you click one menu link the list under it expands, if you click on a new element the old submenu closes and the new sub-menu expands. =) – Bent Commented Oct 26, 2014 at 9:19
1 Answer
Reset to default 8You can use the following code to create expanded/collapsed submenu on AngularJS.
I've attached JSFiddle example for you.
<div ng-controller="MyCtrl">
<ul>
<li ng-repeat="item in items" ng-click="showChilds(item)">
<span>{{item.name}}</span>
<ul>
<li ng-repeat="subItem in item.subItems" ng-show="item.active">
<span>---{{subItem.name}}</span>
</li>
</ul>
</li>
</ul>
</div>
Your JS controller:
function MyCtrl($scope) {
$scope.showChilds = function(item){
item.active = !item.active;
};
$scope.items = [
{
name: "Item1",
subItems: [
{name: "SubItem1"},
{name: "SubItem2"}
]
},
{
name: "Item2",
subItems: [
{name: "SubItem3"},
{name: "SubItem4"},
{name: "SubItem5"}
]
},
{
name: "Item3",
subItems: [
{name: "SubItem6"}
]
}
];
};
UPDATE:
I've updated my post due to your ment about, that when we click on the new menu's item, the previous should be collapsed.
Small changes in the code.
New JSFiddle with your need.
<div ng-controller="MyCtrl">
<ul>
<li ng-repeat="item in items" ng-click="showChilds($index)">
<span>{{item.name}}</span>
<ul>
<li ng-repeat="subItem in item.subItems" ng-show="item.active">
<span>---{{subItem.name}}</span>
</li>
</ul>
</li>
</ul>
</div>
You JS controller:
function MyCtrl($scope) {
$scope.showChilds = function(index){
$scope.items[index].active = !$scope.items[index].active;
collapseAnother(index);
};
var collapseAnother = function(index){
for(var i=0; i<$scope.items.length; i++){
if(i!=index){
$scope.items[i].active = false;
}
}
};
$scope.items = [
// items array the same with the previous example
];
};
本文标签: javascriptSub menu (expandedcollapsed tree) in AngularJSStack Overflow
版权声明:本文标题:javascript - Sub menu (expandedcollapsed tree) in AngularJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743671452a2519604.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论