新規:角度2 &すべて選択/選択解除を作成しようとしています。私はこのようなテーブルを持っている:角度2のすべての機能を選択/選択解除します
<table>
<thead>
<tr>
<th><input type="checkbox" name="selectAll"></th>
<th>Name</th>
<th>Number</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox"></td>
<td>abc</td>
<td>9876373773</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>abc</td>
<td>9876373773</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>abc</td>
<td>9876373773</td>
</tr>
</tbody>
</table>
ユーザーがのSelectAllチェックボックスをクリックするのであれば、他のチェックボックスをチェックしに取得する必要があります。データが動的に来て、ここに私のAPIコールは次のとおりです。Angular2で
this.contactService.getName(this.pageNumber, this.pageSize)
.subscribe(
data => {
this.contactlist = data.results;
},
err => console.error(err),
() => console.log('Contact list fetched')
);
返事のおかげで、しかし、どのような私のデータを動的に来ていると、それはJSONにオブジェクトをチェックしていない場合は。 –
同じ数の項目で異なる変数 'itemsStatus'を作成し、そこに' checked'ステータスを維持することができます。 –
申し訳ありませんが私に例を教えてください?、私は私が書いたAPI呼び出しで質問を編集したことを確認してください –