Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Example of multidimensional (3 or deeper) #3

Description

@rosslavery

Having a hard time figuring out the expected syntax when you get more than 2 levels deep as shown in the example.

I tried something to the effect of:

<ul ng-tree="clients">
    <li each="account in accounts">
        {{account.name}}
        <ul ng-tree="account">
            <li each="party in account.parties">{{party.name}}</li>
        </ul>
    </li>
</ul>

with no luck... I've also tried:

<ul ng-tree="clients">
    <li each="account in accounts">
        {{account.name}}
        <ul>
            <li each="party in account.parties">{{party.name}}</li>
        </ul>
    </li>
</ul>

Any help would be appreciated. Thank you!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions