nebular icon indicating copy to clipboard operation
nebular copied to clipboard

[Tabset] Add CloseButton to nb-tab or accept template for Its Header

Open abadakhshan opened this issue 5 years ago • 2 comments

Please add this feature:

Add CloseButton to nb-tab or accept template for Its Header

abadakhshan avatar Jul 14 '19 11:07 abadakhshan

I need this feature as well. An idea la getting the source code of Github and create it.

carmeloNET avatar Apr 22 '20 03:04 carmeloNET

This is now possible. Use nbTabTitle template.

From documentation:

<nb-card>
  <nb-card-body>
    <nb-tabset>
      <nb-tab>
        <ng-template nbTabTitle>
          <span>Orders</span>
        </ng-template>
        <p>List of <strong>orders</strong>.</p>
      </nb-tab>
      <nb-tab>
        <span *nbTabTitle>Transactions</span>
        <p>List of <strong>transactions</strong>.</p>
      </nb-tab>
    </nb-tabset>
  </nb-card-body>
</nb-card>

PolarbearDK avatar Feb 14 '22 16:02 PolarbearDK