当您切换嵌套列表以展开它时,我有一个水平列表(显示:内联块),它会将列表中的所有其他app.directive('foSidenav',['getDocuments', function(getDocuments){
function linker($scope, element, attrs){
$scope.selectDocType = function(id)
{
alert('docId updated');
alert(id);
getDocuments(id).then(function(result){$scope.DocType = result;},
function(error){$scope.error = result;});
};
}
return{
restrict: 'E',
replace: true,
scope: {
info:'=',
DocType:'='
},
templateUrl:function(element,attr){
return attr.url;
},
link:linker
};}]);
拉下来。
这是我的Demo。
显然我知道它可以像this demo一样工作,因为主列表没有显示内联。但我需要它是内联的。如果有人知道如何让这个工作,我会很感激输入。我试着寻找答案并玩弄代码,但我没有运气。
提前致谢。
CSS:
<li>
答案 0 :(得分:0)