Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(demos): adding static tree demo #13101

Merged
merged 2 commits into from
Jun 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 21 additions & 1 deletion src/app/tree/tree.sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
</div>

<div igxLayout igxLayoutDir="column" class="tree-container">
<p>IgxTree 2: The Branchening</p>
<p>IgxTree 2: The Branching</p>
<igx-tree>
<igx-tree-node *ngFor="let node of data" [data]="node">
{{ node.CompanyName }}
Expand All @@ -118,6 +118,26 @@
</igx-tree-node>
</igx-tree>
</div>

<div igxLayout igxLayoutDir="column" class="tree-container">
<p>IgxTree 3: Static tree</p>
<igx-tree>
<igx-tree-node>
Angular Libraries
<igx-tree-node>Ignite UI for Angular</igx-tree-node>
<igx-tree-node>Angular Material</igx-tree-node>
</igx-tree-node>
<igx-tree-node>
Web Component Libraries
<igx-tree-node>Ignite UI for Web Components</igx-tree-node>
<igx-tree-node>Open UI 5</igx-tree-node>
</igx-tree-node>
<igx-tree-node>
Blazor Libraries
<igx-tree-node>Ignite UI for Blazor</igx-tree-node>
</igx-tree-node>
</igx-tree>
</div>
</div>
</div>
</div>