isdashboard/src/main/webapp/app/tabbed-page/tabbed-page.component.html

29 lines
868 B
HTML

<div class="row">
<div class="col-md-3">
<jhi-ctx-tree (treeNode)="loadTreeNode($event)"></jhi-ctx-tree>
</div>
<div class="col-md-9">
<div class="row">
<jhi-dyn-tabs [myCtx]="currentNodeCtx">
<jhi-dyn-tab [tabTitle]="'Lista'" [myCtx]="currentNodeCtx">
<jhi-list-screen (jsonEmitter)="onViewRawJson($event)"></jhi-list-screen>
</jhi-dyn-tab>
</jhi-dyn-tabs>
</div>
</div>
<!--<ng-template #rawjsonView>-->
<ng-template #rawjsonView>
<jhi-rawjson-view [chosenItem]="chosenItem"></jhi-rawjson-view>
</ng-template>
<!--
<ng-template #about>
<p>
Hi, I hope this demo was useful to learn more about dynamic components
in Angular, in specific about <code>ViewContainerRef</code>,
<code>ComponentResolverFactory</code> etc.
</p>
</ng-template>
-->
</div>