私は次のhtmlコードスニペットを持っています。私はangular2、ng-bootstrap ngタブを使用しています。私の質問は、タブをクリックしたときにメソッドのクリックを呼び出す方法です。 私は(クリック)を追加しましたが、タブをクリックするとfetchNews()メソッドが呼び出されないことがわかりました。私は間違って何をしていますか?タブがクリックされたときにリスナーをクリックします - angular2とngブートストラップ
<ngb-tab title="Active" (click)="fetchNews('active')">
<ng-template ngbTabContent>
<table class="table table-sm table-striped">
<thead>
<tr>
<th>Title</th>
<th>Description</th>
<th>Attachment</th>
<th>Start Date</th>
<th>End Date</th>
<th>Actions</th>
</tr>
</thead>
<tr *ngFor="let item of news">
<td>{{item.title}}</td>
<td>{{item.description | ellipsis:25}}</td>
<td>{{item.attachmentUrl | ellipsis:25}}</td>
<td>{{item.startDate | date: 'MM/dd/yyyy hh:mm a'}}</td>
<td>{{item.endDate | date: 'MM/dd/yyyy hh:mm a'}}</td>
<td>
<button type="button" class="btn btn-secondary btn-sm" (click)="showNewsModal('active',item, true)">
Modify
</button>
</td>
</tr>
</table>
</ng-template>
</ngb-tab>
ありがとう! – Karu
私は一つのことに気付いた。これは、タブのタイトルをクリックした場合にのみ機能します。タイトル以外のタブのどこかをクリックすると、クリックが認識されません。リスナーを作成して、タブのタイトルだけでなく、そのタブの任意の場所をクリックすることもできます。 – Karu
私は答えを更新しました。あなたはそれを試すことができます – yurzui